body.lst-home-redesign {
background: #050505;
overflow-x: hidden;
}
body.lst-home-redesign > header,
body.lst-home-redesign > footer,
body.lst-home-redesign .preloader {
display: none !important;
}
.lst-home,
.lst-home * {
box-sizing: border-box;
}
.lst-home {
--lst-black: #050505;
--lst-black-section: #0b0b0b;
--lst-black-card: #141414;
--lst-black-card-hover: #1b1b1b;
--lst-border-dark: rgba(255, 255, 255, 0.10);
--lst-border-gold: rgba(198, 154, 82, 0.55);
--lst-gold: #c69a52;
--lst-gold-light: #d7b46a;
--lst-gold-dark: #8b6532;
--lst-white: #ffffff;
--lst-ivory: #f4efe7;
--lst-beige: #cfc4b4;
--lst-gray: #a8a09a;
--lst-bordeaux: #6f0e14;
--lst-red-deep: #300609;
--lst-red-accent: #a01822;
--lst-serif: "Canela", "Cormorant Garamond", "Playfair Display", Georgia, serif;
--lst-sans: "Roboto", "Inter", "Montserrat", Arial, sans-serif;
position: relative;
width: 100%;
min-height: 100vh;
overflow: hidden;
background: var(--lst-black);
color: var(--lst-ivory);
font-family: var(--lst-sans);
}
.lst-home a {
color: inherit;
text-decoration: none;
}
.lst-home [id] {
scroll-margin-top: 96px;
}
.lst-home a:focus-visible,
.lst-home button:focus-visible {
outline: 2px solid var(--lst-gold-light);
outline-offset: 4px;
}
.lst-home img {
display: block;
max-width: 100%;
}
.lst-home-container {
width: min(100% - 128px, 1240px);
margin: 0 auto;
}
.lst-overline {
margin: 0;
color: var(--lst-gold);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.14em;
line-height: 1.4;
text-transform: uppercase;
}
.lst-section-title,
.lst-split-title,
.lst-home h1,
.lst-home h2,
.lst-home h3 {
font-family: var(--lst-serif);
font-weight: 500;
text-transform: none;
}
.lst-section-title {
margin: 8px 0 0;
color: var(--lst-ivory);
font-size: 42px;
line-height: 1.08;
letter-spacing: -0.018em;
}
.lst-split-title {
margin: 12px 0 20px;
max-width: 560px;
color: var(--lst-ivory);
font-size: 40px;
line-height: 1.06;
letter-spacing: -0.018em;
}
.lst-muted {
margin: 0;
max-width: 440px;
color: var(--lst-beige);
font-size: 15px;
line-height: 1.7;
}
.lst-icon {
display: inline-flex;
flex: 0 0 auto;
width: 30px;
height: 30px;
color: var(--lst-gold);
}
.lst-icon svg {
width: 100%;
height: 100%;
fill: none;
stroke: currentColor;
stroke-width: 1.55;
stroke-linecap: round;
stroke-linejoin: round;
}
.lst-home-btn {
position: relative;
isolation: isolate;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 50px;
padding: 0 30px;
border: 1px solid transparent;
border-radius: 2px;
font-family: var(--lst-sans);
font-size: 13px;
font-weight: 600;
letter-spacing: 0.03em;
line-height: 1;
text-transform: uppercase;
overflow: hidden;
transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, color 260ms ease, transform 260ms ease;
}
.lst-home-btn::before {
content: "";
position: absolute;
inset: -1px;
z-index: -1;
background: radial-gradient(circle at 50% 50%, rgba(255, 231, 179, 0.36), transparent 64%);
opacity: 0;
transform: scale(0.74);
transition: opacity 260ms ease, transform 260ms ease;
}
.lst-home-btn:hover {
transform: translateY(-2px);
}
.lst-home-btn--gold {
border-color: var(--lst-gold);
background: var(--lst-gold);
color: #111111;
box-shadow: 0 12px 34px rgba(198, 154, 82, 0.22);
}
.lst-home-btn--gold:hover {
border-color: var(--lst-gold-light);
background: var(--lst-gold-light);
color: #080808;
box-shadow: 0 16px 44px rgba(198, 154, 82, 0.38), 0 0 28px rgba(198, 154, 82, 0.18);
}
.lst-home-btn--gold:hover::before {
opacity: 1;
transform: scale(1);
}
.lst-home-btn--ghost {
border-color: rgba(255, 255, 255, 0.38);
background: rgba(255, 255, 255, 0.02);
color: var(--lst-ivory);
}
.lst-home-btn--ghost:hover {
border-color: var(--lst-gold);
color: var(--lst-gold-light);
}
.lst-reveal {
opacity: 1;
transform: none;
}
.lst-js-enabled .lst-reveal {
opacity: 0;
transform: translate3d(0, 42px, 0);
filter: blur(8px);
transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1), filter 820ms cubic-bezier(0.22, 1, 0.36, 1);
will-change: opacity, transform, filter;
}
.lst-js-enabled .lst-reveal.is-visible {
opacity: 1;
transform: translate3d(0, 0, 0);
filter: blur(0);
}
.lst-js-enabled .lst-hero__content.lst-reveal {
opacity: 1;
transform: none;
filter: none;
transition: none;
}
.lst-home-header {
position: fixed;
top: 0;
left: 0;
z-index: 30;
width: 100%;
min-height: 84px;
background: rgba(5, 5, 5, 0.66);
border-bottom: 1px solid rgba(198, 154, 82, 0.12);
box-shadow: 0 0 0 rgba(0, 0, 0, 0);
backdrop-filter: blur(18px) saturate(1.1);
transition: min-height 260ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.lst-home-header.is-compact {
min-height: 68px;
background: rgba(5, 5, 5, 0.84);
border-bottom-color: rgba(198, 154, 82, 0.25);
box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}
.lst-home-header__inner {
position: relative;
display: grid;
grid-template-columns: 180px 1fr auto 116px;
align-items: center;
min-height: 84px;
gap: 18px;
transition: min-height 260ms ease;
}
.lst-home-header.is-compact .lst-home-header__inner {
min-height: 68px;
}
.lst-home-header__logo {
grid-column: 1;
justify-self: start;
display: inline-flex;
align-items: center;
width: 145px;
transition: width 260ms ease;
}
.lst-home-header__logo img {
width: 145px;
height: auto;
max-height: 68px;
object-fit: contain;
transition: width 260ms ease, max-height 260ms ease;
}
.lst-home-header.is-compact .lst-home-header__logo,
.lst-home-header.is-compact .lst-home-header__logo img {
width: 126px;
}
.lst-home-header.is-compact .lst-home-header__logo img {
max-height: 56px;
}
.lst-home-nav {
display: flex;
align-items: center;
justify-content: center;
}
@media (min-width: 1024px) {
.lst-home-nav {
position: absolute;
top: 0;
left: 50%;
height: 100%;
width: max-content;
transform: translateX(-50%);
}
.lst-home-nav__list {
height: 100%;
transform: translateY(26px);
transition: transform 260ms ease;
}
.lst-home-nav__list a {
min-height: 92px;
}
.lst-home-header.is-compact .lst-home-nav__list {
transform: translateY(17px);
}
.lst-home-header.is-compact .lst-home-nav__list a {
min-height: 74px;
}
}
.lst-home-nav__list {
display: flex;
align-items: center;
justify-content: center;
gap: 42px;
margin: 0;
padding: 0;
list-style: none;
}
.lst-home-nav__list li {
position: relative;
margin: 0;
padding: 0;
font-size: inherit;
line-height: 1;
}
.lst-home-nav__list a {
position: relative;
display: inline-flex;
align-items: center;
min-height: 44px;
padding: 0 8px;
color: var(--lst-ivory);
font-size: 14px;
font-weight: 600;
letter-spacing: 0.035em;
line-height: 1;
transition: color 220ms ease;
}
.lst-home-nav__list a:hover,
.lst-home-nav__list .current-menu-item > a,
.lst-home-nav__list .current_page_item > a,
.lst-home-nav__list .status-active > a {
color: var(--lst-gold);
}
.lst-home-nav__list .current-menu-item > a::after,
.lst-home-nav__list .current_page_item > a::after,
.lst-home-nav__list .status-active > a::after,
.lst-home-nav__list li:first-child > a::after {
content: "";
position: absolute;
left: 50%;
bottom: 5px;
width: 22px;
height: 1px;
background: var(--lst-gold);
transform: translateX(-50%);
}
.lst-home-header__reserve {
grid-column: 4;
justify-self: end;
width: 116px;
min-height: 46px;
padding: 0 18px;
}
.lst-home-header.is-compact .lst-home-header__reserve {
min-height: 40px;
}
.lst-home-header__call {
grid-column: 3;
justify-self: end;
}
.lst-home-call {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 46px;
padding: 0 14px;
border: 1px solid rgba(198, 154, 82, 0.34);
border-radius: 2px;
color: var(--lst-ivory);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.02em;
white-space: nowrap;
transition: border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}
.lst-home-header.is-compact .lst-home-call {
min-height: 40px;
}
.lst-home-call:hover {
border-color: rgba(198, 154, 82, 0.72);
background: rgba(198, 154, 82, 0.08);
color: var(--lst-gold-light);
}
.lst-home-call .lst-icon {
width: 16px;
height: 16px;
}
.lst-mobile-call {
display: none;
}
.lst-home-nav__reserve,
.lst-home-burger {
display: none;
}
.lst-hero {
position: relative;
display: flex;
align-items: center;
min-height: 690px;
background: #120d0a;
overflow: hidden;
}
.lst-hero__cinema {
position: absolute;
inset: -2% 0;
z-index: 0;
overflow: hidden;
}
.lst-hero__cinema::after {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(circle at 72% 35%, rgba(250, 198, 0, 0.20), transparent 34%),
radial-gradient(circle at 18% 74%, rgba(111, 14, 20, 0.13), transparent 38%);
mix-blend-mode: soft-light;
pointer-events: none;
}
.lst-js-enabled .lst-hero__cinema {
opacity: 0;
transform: scale(1.06);
animation: lst-hero-cinema-reveal 1300ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}
.lst-hero__track {
position: absolute;
inset: 0;
height: 100%;
}
.lst-hero__slide {
position: absolute;
inset: 0;
height: 100%;
margin: 0;
overflow: hidden;
background: #160f0c;
opacity: 0;
animation: lst-hero-gallery 32s cubic-bezier(0.45, 0, 0.25, 1) infinite;
will-change: opacity;
}
.lst-hero__slide img {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(1.32) contrast(1.04) saturate(1.16) sepia(0.05);
transform: scale(1.035) translate3d(0, 0, 0);
animation: lst-hero-photo-motion 32s cubic-bezier(0.45, 0, 0.25, 1) infinite;
will-change: transform;
}
.lst-hero__slide:nth-child(2),
.lst-hero__slide:nth-child(2) img {
animation-delay: 8s;
}
.lst-hero__slide:nth-child(3),
.lst-hero__slide:nth-child(3) img {
animation-delay: 16s;
}
.lst-hero__slide:nth-child(4),
.lst-hero__slide:nth-child(4) img {
animation-delay: 24s;
}
.lst-hero__slide.is-room-wide img {
object-position: center right;
}
.lst-hero__slide.is-jacuzzi img {
object-position: center center;
}
.lst-hero__slide.is-room-detail img {
object-position: 62% center;
}
.lst-hero__slide.is-suite-detail img {
object-position: 40% center;
}
@keyframes lst-hero-gallery {
0%, 100% {
opacity: 0;
}
4%, 22% {
opacity: 1;
}
28% {
opacity: 0;
}
}
@keyframes lst-hero-photo-motion {
0% {
transform: scale(1.035) translate3d(0, 0, 0);
}
22% {
transform: scale(1.075) translate3d(-1.5%, -0.6%, 0);
}
28%, 100% {
transform: scale(1.08) translate3d(-1.8%, -0.8%, 0);
}
}
.lst-hero__shade {
position: absolute;
inset: 0;
z-index: 1;
background:
linear-gradient(90deg, rgba(3, 2, 2, 0.42) 0%, rgba(8, 5, 4, 0.26) 38%, rgba(8, 5, 4, 0.08) 68%, rgba(8, 5, 4, 0.20) 100%),
linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.15) 100%);
}
.lst-hero__content {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
align-items: center;
gap: 56px;
width: min(100% - 128px, 1240px);
padding-top: 106px;
}
.lst-hero__copy > * {
max-width: 610px;
}
.lst-hero__copy {
position: relative;
text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.lst-hero__copy::before {
content: "";
position: absolute;
inset: -34px -42px -30px -34px;
z-index: -1;
border-radius: 34px;
background:
radial-gradient(circle at 18% 28%, rgba(0, 0, 0, 0.46), transparent 62%),
linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12));
filter: blur(1px);
}
.lst-hero__title {
display: flex;
flex-direction: column;
margin: 16px 0 22px;
color: var(--lst-ivory);
font-size: 64px;
line-height: 0.98;
letter-spacing: -0.025em;
}
.lst-hero__title span {
display: block;
}
.lst-hero__text {
margin: 0 0 30px;
max-width: 480px;
color: #d6cec4;
font-size: 16px;
line-height: 1.65;
}
.lst-hero__badges {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin: -12px 0 26px;
}
.lst-hero__badges span {
display: inline-flex;
align-items: center;
min-height: 30px;
padding: 0 12px;
border: 1px solid rgba(198, 154, 82, 0.36);
border-radius: 999px;
background: rgba(0, 0, 0, 0.28);
color: var(--lst-beige);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.02em;
}
.lst-hero__actions {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 12px;
}
.lst-js-enabled .lst-hero__copy .lst-overline,
.lst-js-enabled .lst-hero__title span,
.lst-js-enabled .lst-hero__text,
.lst-js-enabled .lst-hero__badges,
.lst-js-enabled .lst-hero__actions,
.lst-js-enabled .lst-hero__booking {
opacity: 0;
transform: translate3d(0, 28px, 0);
filter: blur(6px);
animation: lst-hero-copy-reveal 920ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.lst-js-enabled .lst-hero__copy .lst-overline {
animation-delay: 260ms;
}
.lst-js-enabled .lst-hero__title span:nth-child(1) {
animation-delay: 380ms;
}
.lst-js-enabled .lst-hero__title span:nth-child(2) {
animation-delay: 480ms;
}
.lst-js-enabled .lst-hero__title span:nth-child(3) {
animation-delay: 580ms;
}
.lst-js-enabled .lst-hero__text {
animation-delay: 700ms;
}
.lst-js-enabled .lst-hero__badges {
animation-delay: 800ms;
}
.lst-js-enabled .lst-hero__actions {
animation-delay: 900ms;
}
.lst-js-enabled .lst-hero__booking {
animation-delay: 720ms;
}
.lst-hero__booking {
scroll-margin-top: 92px;
justify-self: end;
width: min(100%, 410px);
padding: 10px;
border: 1px solid rgba(250, 198, 0, 0.34);
border-radius: 26px;
background: linear-gradient(145deg, rgba(250, 198, 0, 0.20), rgba(111, 14, 20, 0.18));
box-shadow: 0 28px 78px rgba(0, 0, 0, 0.40);
backdrop-filter: blur(10px);
}
@keyframes lst-hero-cinema-reveal {
0% {
opacity: 0;
transform: scale(1.06);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes lst-hero-copy-reveal {
0% {
opacity: 0;
transform: translate3d(0, 28px, 0);
filter: blur(6px);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
filter: blur(0);
}
}
.lst-hero__booking #lodgify-book-now-box,
.lst-hero__booking [data-testid="book-now-box"] {
width: 100% !important;
}
.lst-hero__booking [data-testid="book-now-box"] {
border: 0 !important;
border-radius: 22px !important;
box-shadow: 0 24px 54px rgba(0, 0, 0, 0.25) !important;
}
.lst-hero__booking [data-testid="book-now-box.cta-button"] {
min-height: 52px;
font-weight: 800 !important;
letter-spacing: 0.04em;
}
.lst-lodgify-fallback[hidden] {
display: none !important;
}
.lst-lodgify-fallback {
display: grid;
gap: 14px;
padding: 28px;
border-radius: 22px;
background:
radial-gradient(circle at top right, rgba(198, 154, 82, 0.22), transparent 42%),
linear-gradient(145deg, rgba(19, 17, 16, 0.98), rgba(64, 9, 15, 0.92));
color: var(--lst-cream);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.lst-lodgify-fallback__eyebrow {
margin: 0;
color: var(--lst-gold);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.18em;
text-transform: uppercase;
}
.lst-lodgify-fallback__title {
margin: 0;
font-family: var(--lst-serif);
font-size: 26px;
line-height: 1.12;
}
.lst-lodgify-fallback__text {
margin: 0;
color: rgba(255, 248, 237, 0.76);
font-size: 14px;
line-height: 1.65;
}
.lst-hero__booking.is-lodgify-fallback-active #lodgify-book-now-box {
display: none !important;
}
.lst-feature-strip {
min-height: 92px;
background: rgba(5, 5, 5, 0.96);
border-top: 1px solid rgba(198, 154, 82, 0.22);
border-bottom: 1px solid rgba(198, 154, 82, 0.16);
}
.lst-feature-strip__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
min-height: 92px;
}
.lst-feature-strip__item {
position: relative;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
min-width: 0;
color: var(--lst-ivory);
font-size: 14px;
font-weight: 500;
letter-spacing: 0.02em;
overflow: hidden;
transition: background-color 260ms ease, color 260ms ease, transform 260ms ease;
}
.lst-feature-strip__item::before {
content: "";
position: absolute;
inset: 10px;
border-radius: 999px;
background: radial-gradient(circle at 50% 50%, rgba(198, 154, 82, 0.18), transparent 68%);
opacity: 0;
transform: scale(0.72);
transition: opacity 260ms ease, transform 260ms ease;
}
.lst-feature-strip__item > * {
position: relative;
}
.lst-feature-strip__item:hover {
background: rgba(198, 154, 82, 0.055);
color: var(--lst-gold-light);
transform: translateY(-2px);
}
.lst-feature-strip__item:hover::before {
opacity: 1;
transform: scale(1);
}
.lst-feature-strip__item + .lst-feature-strip__item {
border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.lst-overview {
padding: 48px 0 54px;
background:
radial-gradient(circle at 84% 30%, rgba(111, 14, 20, 0.18), transparent 32%),
#080808;
border-bottom: 1px solid rgba(198, 154, 82, 0.16);
}
.lst-overview__inner {
display: grid;
grid-template-columns: 31% 1fr;
gap: 42px;
align-items: start;
}
.lst-overview__heading h2 {
margin: 10px 0 14px;
color: var(--lst-ivory);
font-family: var(--lst-serif);
font-size: 34px;
font-weight: 500;
line-height: 1.08;
letter-spacing: -0.018em;
}
.lst-overview__heading p:last-child {
margin: 0;
color: var(--lst-beige);
font-size: 14px;
line-height: 1.65;
}
.lst-overview__grid {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 10px;
}
.lst-overview-card {
position: relative;
min-height: 88px;
padding: 16px 14px;
border: 1px solid rgba(198, 154, 82, 0.20);
border-radius: 8px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
overflow: hidden;
transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}
.lst-overview-card::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(198, 154, 82, 0.18), transparent 42%);
opacity: 0;
transition: opacity 280ms ease;
}
.lst-overview-card > * {
position: relative;
}
.lst-overview-card:hover {
border-color: rgba(198, 154, 82, 0.55);
box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
transform: translateY(-4px);
}
.lst-overview-card:hover::before {
opacity: 1;
}
.lst-overview-card strong {
display: block;
color: var(--lst-ivory);
font-family: var(--lst-serif);
font-size: 18px;
font-weight: 500;
line-height: 1.12;
}
.lst-overview-card span {
display: block;
margin-top: 8px;
color: var(--lst-gray);
font-size: 12px;
line-height: 1.35;
}
.lst-section {
padding: 56px 0 64px;
}
.lst-experience {
background: #080808;
}
.lst-section__center {
text-align: center;
}
.lst-section-lead {
max-width: 690px;
margin: 16px auto 0;
color: var(--lst-beige);
font-size: 15px;
line-height: 1.7;
}
.lst-experience__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 24px;
width: min(100%, 1120px);
margin: 36px auto 0;
}
.lst-experience-card {
position: relative;
min-height: 158px;
padding: 28px 22px;
border: 1px solid rgba(198, 154, 82, 0.22);
border-radius: 3px;
background: linear-gradient(180deg, #191919, #111111);
box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
overflow: hidden;
text-align: center;
transition: transform 280ms ease, border-color 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}
.lst-experience-card::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(circle at 50% 0%, rgba(198, 154, 82, 0.18), transparent 58%);
opacity: 0;
transition: opacity 280ms ease;
}
.lst-experience-card > * {
position: relative;
}
.lst-experience-card:hover {
border-color: rgba(198, 154, 82, 0.55);
background: linear-gradient(180deg, #1d1d1d, #131313);
box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34), 0 0 24px rgba(198, 154, 82, 0.12);
transform: translateY(-6px);
}
.lst-experience-card:hover::before {
opacity: 1;
}
.lst-experience-card__icon {
width: 40px;
height: 40px;
margin: 0 auto 13px;
}
.lst-experience-card h3 {
margin: 0 0 8px;
color: var(--lst-ivory);
font-size: 18px;
line-height: 1.15;
}
.lst-experience-card p {
margin: 0 auto;
max-width: 210px;
color: var(--lst-gray);
font-size: 13px;
line-height: 1.5;
}
.lst-equipment,
.lst-services {
display: grid;
grid-template-columns: 40% 60%;
min-height: 430px;
background: #0a0a0a;
}
.lst-equipment {
grid-template-columns: 48% 52%;
}
.lst-equipment__copy,
.lst-services__content {
display: flex;
flex-direction: column;
justify-content: center;
padding: 64px 56px;
}
.lst-equipment__copy {
padding-left: max(56px, calc((100vw - 1240px) / 2));
}
.lst-check-list {
display: grid;
gap: 10px;
margin: 24px 0 0;
padding: 0;
list-style: none;
}
.lst-check-list li {
display: flex;
align-items: flex-start;
gap: 10px;
margin: 0;
color: #d8d0c7;
font-size: 14px;
line-height: 1.5;
}
.lst-check-list .lst-icon {
width: 18px;
height: 18px;
margin-top: 1px;
}
.lst-equipment__amenities {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
margin-top: 26px;
}
.lst-amenity-card {
position: relative;
padding: 18px;
border: 1px solid rgba(198, 154, 82, 0.20);
background: rgba(255, 255, 255, 0.025);
overflow: hidden;
transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.lst-amenity-card:hover {
border-color: rgba(198, 154, 82, 0.52);
box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
transform: translateY(-4px);
}
.lst-amenity-card h3 {
margin: 0 0 12px;
color: var(--lst-ivory);
font-size: 18px;
line-height: 1.15;
}
.lst-amenity-card ul {
display: grid;
gap: 8px;
margin: 0;
padding: 0;
list-style: none;
}
.lst-amenity-card li {
display: flex;
align-items: flex-start;
gap: 8px;
color: #d8d0c7;
font-size: 12px;
line-height: 1.45;
}
.lst-amenity-card .lst-icon {
width: 15px;
height: 15px;
margin-top: 1px;
}
.lst-equipment__media {
--lst-parallax-y: 0px;
--lst-photo-scale: 1.045;
display: grid;
grid-template-columns: 62fr 38fr;
gap: 4px;
min-height: 430px;
overflow: hidden;
}
.lst-equipment__image {
width: 100%;
height: 100%;
min-height: 430px;
object-fit: cover;
transform: translate3d(0, var(--lst-parallax-y), 0) scale(var(--lst-photo-scale));
will-change: transform;
}
.lst-equipment__image--main {
object-position: center;
}
.lst-equipment__image--side {
object-position: center;
}
.lst-services {
grid-template-columns: 52% 48%;
min-height: 470px;
background: #080808;
}
.lst-services__content {
padding-left: max(56px, calc((100vw - 1240px) / 2));
}
.lst-services__grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
max-width: 720px;
margin-top: 22px;
}
.lst-services__intro {
margin: 0;
max-width: 620px;
color: var(--lst-beige);
font-size: 14px;
line-height: 1.65;
}
.lst-service-card {
position: relative;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
min-height: 150px;
padding: 18px;
border: 1px solid rgba(255, 255, 255, 0.10);
background: #151515;
box-shadow: 0 14px 38px rgba(0, 0, 0, 0.20);
overflow: hidden;
text-align: left;
transition: transform 280ms ease, border-color 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}
.lst-service-card::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(198, 154, 82, 0.16), transparent 45%);
opacity: 0;
transition: opacity 280ms ease;
}
.lst-service-card > * {
position: relative;
}
.lst-service-card::after {
content: "";
position: absolute;
left: 18px;
right: 18px;
bottom: 0;
height: 1px;
background: rgba(198, 154, 82, 0.45);
}
.lst-service-card:hover {
border-color: rgba(198, 154, 82, 0.62);
background: var(--lst-black-card-hover);
box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32), 0 0 22px rgba(198, 154, 82, 0.10);
transform: translateY(-5px);
}
.lst-service-card:hover::before {
opacity: 1;
}
.lst-service-card__title {
display: block;
color: var(--lst-white);
font-family: var(--lst-serif);
font-size: 17px;
line-height: 1.1;
}
.lst-service-card__head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 14px;
width: 100%;
}
.lst-service-card__price {
flex: 0 0 auto;
color: var(--lst-gold-light);
font-size: 13px;
font-weight: 700;
line-height: 1.1;
}
.lst-service-card del {
margin-top: 8px;
color: var(--lst-gray);
font-size: 12px;
}
.lst-service-card__description {
display: block;
margin-top: 10px;
color: var(--lst-beige);
font-size: 12px;
line-height: 1.45;
}
.lst-services__cta {
display: inline-flex;
width: fit-content;
margin-top: 22px;
color: var(--lst-gold-light);
font-size: 13px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.lst-services__media {
--lst-parallax-y: 0px;
--lst-photo-scale: 1.045;
position: relative;
min-height: 470px;
overflow: hidden;
}
.lst-services__media::before {
content: "";
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(90deg, rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.08));
pointer-events: none;
}
.lst-services__media img {
width: 100%;
height: 100%;
min-height: 470px;
object-fit: cover;
object-position: center;
transform: translate3d(0, var(--lst-parallax-y), 0) scale(var(--lst-photo-scale));
transition: transform 120ms linear;
will-change: transform;
}
.lst-services__media:hover {
--lst-photo-scale: 1.065;
}
.lst-paris {
display: grid;
grid-template-columns: 24% 40% 36%;
min-height: 340px;
background: #101010;
}
.lst-paris__image {
--lst-parallax-y: 0px;
--lst-photo-scale: 1.055;
position: relative;
min-height: 340px;
overflow: hidden;
}
.lst-paris__image::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.24);
}
.lst-paris__image img {
width: 100%;
height: 100%;
min-height: 340px;
object-fit: cover;
transform: translate3d(0, var(--lst-parallax-y), 0) scale(var(--lst-photo-scale));
transition: transform 120ms linear;
will-change: transform;
}
.lst-paris__image--left img {
object-position: center;
}
.lst-paris__image--right img {
object-position: center;
}
.lst-paris__content {
display: flex;
flex-direction: column;
justify-content: center;
min-height: 340px;
padding: 54px;
border-left: 1px solid rgba(198, 154, 82, 0.26);
border-right: 1px solid rgba(198, 154, 82, 0.26);
background: #101010;
}
.lst-paris__content h2 {
margin: 12px 0 12px;
color: var(--lst-ivory);
font-size: 40px;
line-height: 1.05;
letter-spacing: -0.018em;
}
.lst-paris__gold {
margin: 0 0 14px;
color: var(--lst-gold-light);
font-size: 15px;
line-height: 1.4;
}
.lst-paris__text {
margin: 0;
color: var(--lst-beige);
font-size: 14px;
line-height: 1.65;
}
.lst-paris__facts {
display: flex;
flex-wrap: wrap;
gap: 14px 20px;
margin-top: 18px;
}
.lst-paris__facts span {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--lst-ivory);
font-size: 13px;
line-height: 1.3;
}
.lst-paris__facts .lst-icon {
width: 18px;
height: 18px;
}
.lst-reviews {
position: relative;
padding: 54px 0 58px;
background:
radial-gradient(circle at 66% 22%, rgba(198, 154, 82, 0.12), transparent 22%),
radial-gradient(circle at 12% 18%, rgba(111, 14, 20, 0.18), transparent 30%),
linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 16px),
#050505;
border-top: 1px solid rgba(198, 154, 82, 0.14);
border-bottom: 1px solid rgba(198, 154, 82, 0.14);
overflow: hidden;
}
.lst-reviews__heading {
display: grid;
grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
gap: 40px;
align-items: center;
}
.lst-reviews__heading > div {
position: relative;
z-index: 1;
}
.lst-reviews__heading .lst-section-title {
position: relative;
z-index: 1;
margin-top: 0;
}
.lst-reviews__heading .lst-section-title::before {
content: "";
position: absolute;
right: 8%;
top: 50%;
z-index: -1;
width: 220px;
height: 120px;
background: radial-gradient(circle, rgba(198, 154, 82, 0.16), transparent 68%);
filter: blur(8px);
transform: translateY(-50%);
}
.lst-reviews__marquee {
position: relative;
width: 100vw;
margin: 34px calc(50% - 50vw) 0;
overflow: hidden;
}
.lst-reviews__marquee::before,
.lst-reviews__marquee::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
z-index: 3;
width: min(13vw, 170px);
pointer-events: none;
}
.lst-reviews__marquee::before {
left: 0;
background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.84) 42%, transparent 100%);
}
.lst-reviews__marquee::after {
right: 0;
background: linear-gradient(270deg, #050505 0%, rgba(5, 5, 5, 0.84) 42%, transparent 100%);
}
.lst-reviews__track {
display: flex;
gap: 16px;
width: max-content;
padding: 8px 16px 14px;
animation: lst-reviews-marquee 58s linear infinite;
}
.lst-review-card {
position: relative;
flex: 0 0 282px;
min-height: 136px;
padding: 20px;
border: 1px solid rgba(198, 154, 82, 0.24);
border-radius: 3px;
background:
linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
#111111;
box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
overflow: hidden;
transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}
.lst-review-card:hover,
.lst-review-card:focus-within {
border-color: rgba(215, 180, 106, 0.82);
box-shadow: 0 0 0 1px rgba(215, 180, 106, 0.18), 0 18px 54px rgba(198, 154, 82, 0.18);
transform: translateY(-6px);
}
.lst-review-card__quote {
position: absolute;
right: 16px;
top: -18px;
color: rgba(198, 154, 82, 0.13);
font-family: var(--lst-serif);
font-size: 96px;
line-height: 1;
}
.lst-review-card__top {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 12px;
}
.lst-review-card__top strong {
color: var(--lst-ivory);
font-family: var(--lst-serif);
font-size: 22px;
font-weight: 500;
line-height: 1;
}
.lst-review-card__top span {
display: inline-flex;
align-items: center;
min-height: 24px;
padding: 0 9px;
border: 1px solid rgba(198, 154, 82, 0.34);
border-radius: 999px;
background: rgba(198, 154, 82, 0.08);
color: var(--lst-gold);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease, text-shadow 220ms ease;
}
.lst-review-card:hover .lst-review-card__top span,
.lst-review-card:focus-within .lst-review-card__top span {
border-color: rgba(215, 180, 106, 0.74);
background: rgba(198, 154, 82, 0.14);
color: var(--lst-gold-light);
text-shadow: 0 0 14px rgba(215, 180, 106, 0.42);
}
.lst-review-card p {
position: relative;
z-index: 1;
margin: 0;
color: #ddd5cc;
font-size: 13px;
line-height: 1.5;
}
@keyframes lst-reviews-marquee {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(-50%, 0, 0);
}
}
.lst-press {
padding: 48px 0;
background: #0a0a0a;
border-bottom: 1px solid rgba(198, 154, 82, 0.18);
}
.lst-press__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 42px;
}
.lst-press__logos {
display: grid;
grid-template-columns: repeat(4, minmax(132px, 1fr));
gap: 14px;
width: min(100%, 760px);
}
.lst-press-logo {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 82px;
padding: 18px 20px;
border: 1px solid rgba(198, 154, 82, 0.24);
border-radius: 3px;
background:
linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
#101010;
box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
overflow: hidden;
transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}
.lst-press-logo::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(circle at 50% 0%, rgba(215, 180, 106, 0.13), transparent 58%);
opacity: 0;
transition: opacity 260ms ease;
}
.lst-press-logo img {
position: relative;
z-index: 1;
display: block;
width: 100%;
max-width: 138px;
max-height: 44px;
object-fit: contain;
opacity: 0.88;
transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
}
.lst-press-logo:hover,
.lst-press-logo:focus-visible {
border-color: rgba(215, 180, 106, 0.82);
box-shadow: 0 0 0 1px rgba(215, 180, 106, 0.14), 0 18px 54px rgba(198, 154, 82, 0.15);
transform: translateY(-4px);
}
.lst-press-logo:hover::before,
.lst-press-logo:focus-visible::before {
opacity: 1;
}
.lst-press-logo:hover img,
.lst-press-logo:focus-visible img {
opacity: 1;
filter: drop-shadow(0 8px 18px rgba(215, 180, 106, 0.16));
transform: scale(1.025);
}
.lst-trust {
padding: 64px 0;
border-top: 1px solid rgba(198, 154, 82, 0.22);
border-bottom: 1px solid rgba(198, 154, 82, 0.22);
background:
radial-gradient(circle at 12% 20%, rgba(198, 154, 82, 0.08), transparent 28%),
linear-gradient(135deg, #080808 0%, #0d0d0d 48%, #050505 100%);
}
.lst-trust__grid {
display: grid;
grid-template-columns: 30% 70%;
align-items: center;
gap: 48px;
}
.lst-trust__badge {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 18px;
}
.lst-trust__badge img {
width: 190px;
height: auto;
background: #ffffff;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.lst-trust__items {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
margin-top: 30px;
}
.lst-trust-item {
position: relative;
padding: 0 28px;
transition: background-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.lst-trust-item:first-child {
padding-left: 0;
}
.lst-trust-item + .lst-trust-item {
border-left: 1px solid rgba(198, 154, 82, 0.24);
}
.lst-trust-item:hover {
background: rgba(198, 154, 82, 0.035);
box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
transform: translateY(-3px);
}
.lst-trust-item .lst-icon {
width: 34px;
height: 34px;
margin-bottom: 14px;
}
.lst-trust-item h3 {
margin: 0 0 10px;
color: var(--lst-ivory);
font-size: 19px;
line-height: 1.18;
}
.lst-trust-item p {
margin: 0;
color: var(--lst-gray);
font-size: 13px;
line-height: 1.55;
}
.lst-final-cta {
min-height: 108px;
background:
linear-gradient(90deg, rgba(48, 6, 9, 0.94) 0%, rgba(111, 14, 20, 0.92) 50%, rgba(48, 6, 9, 0.94) 100%),
radial-gradient(circle at 12% 50%, rgba(160, 24, 34, 0.55), transparent 34%);
}
.lst-final-cta__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 32px;
min-height: 108px;
}
.lst-final-cta h2 {
margin: 0;
color: var(--lst-ivory);
font-size: 34px;
line-height: 1.1;
letter-spacing: -0.014em;
}
.lst-final-cta p {
margin: 7px 0 0;
max-width: 720px;
color: var(--lst-gold-light);
font-size: 16px;
line-height: 1.4;
}
.lst-final-cta__actions {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 12px;
}
.lst-home-footer {
padding: 48px 0 0;
border-top: 1px solid rgba(198, 154, 82, 0.18);
background: #050505;
color: var(--lst-beige);
}
.lst-home-footer__grid {
display: grid;
grid-template-columns: 1.25fr 0.7fr 1fr 1.05fr;
gap: 46px;
align-items: start;
}
.lst-home-footer__brand img {
width: 154px;
height: auto;
margin-bottom: 18px;
}
.lst-home-footer__brand p {
margin: 0;
max-width: 360px;
color: var(--lst-beige);
font-size: 14px;
line-height: 1.7;
}
.lst-home-footer h3 {
margin: 0 0 18px;
color: var(--lst-gold);
font-family: var(--lst-sans);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
}
.lst-home-footer__nav,
.lst-home-footer__contact,
.lst-home-footer__links {
display: flex;
flex-direction: column;
gap: 10px;
}
.lst-home-footer__nav a,
.lst-home-footer__contact a,
.lst-home-footer__links a,
.lst-home-footer__bottom a,
.lst-home-footer__socials a {
color: var(--lst-beige);
font-size: 14px;
line-height: 1.4;
transition: color 220ms ease;
}
.lst-home-footer__nav a:hover,
.lst-home-footer__contact a:hover,
.lst-home-footer__links a:hover,
.lst-home-footer__bottom a:hover,
.lst-home-footer__socials a:hover {
color: var(--lst-gold-light);
}
.lst-home-footer__contact p {
margin: 0;
color: var(--lst-beige);
font-size: 14px;
line-height: 1.5;
}
.lst-home-footer__socials {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 18px;
}
.lst-home-footer__bottom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
margin-top: 42px;
padding: 22px 0;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lst-home-footer__bottom p {
margin: 0;
max-width: 560px;
color: var(--lst-gray);
font-size: 13px;
}
.lst-home-footer__bottom div {
display: flex;
flex-wrap: wrap;
gap: 18px;
}
@media (max-width: 1199px) {
.lst-home-container,
.lst-hero__content {
width: min(100% - 64px, 1240px);
}
.lst-home-header__inner {
grid-template-columns: 160px 1fr 112px;
gap: 22px;
}
.lst-home-header__call {
display: none;
}
.lst-home-nav__list {
gap: 28px;
}
.lst-hero__title {
font-size: 58px;
}
.lst-equipment__copy,
.lst-services__content {
padding: 56px 32px;
}
.lst-equipment__copy,
.lst-services__content {
padding-left: 32px;
}
.lst-services__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lst-overview__inner {
grid-template-columns: 1fr;
}
.lst-overview__grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lst-review-card {
flex-basis: 270px;
}
.lst-press__inner {
align-items: flex-start;
flex-direction: column;
}
}
@media (max-width: 1023px) {
.lst-home-header {
min-height: 72px;
}
.lst-home-header.is-compact {
min-height: 64px;
}
.lst-home-header__inner {
grid-template-columns: 1fr auto;
min-height: 72px;
}
.lst-home-header.is-compact .lst-home-header__inner {
min-height: 64px;
}
.lst-home-header__logo,
.lst-home-header__logo img {
width: 132px;
}
.lst-home-header.is-compact .lst-home-header__logo,
.lst-home-header.is-compact .lst-home-header__logo img {
width: 118px;
}
.lst-home-header__reserve {
display: none;
}
.lst-home-header__call {
display: none;
}
.lst-home-burger {
display: inline-flex;
flex-direction: column;
justify-content: center;
gap: 6px;
width: 46px;
height: 46px;
padding: 0;
border: 1px solid rgba(198, 154, 82, 0.36);
border-radius: 2px;
background: rgba(255, 255, 255, 0.03);
cursor: pointer;
}
.lst-home-burger span {
display: block;
width: 20px;
height: 1px;
margin: 0 auto;
background: var(--lst-ivory);
transition: transform 220ms ease, opacity 220ms ease;
}
.lst-home-header.is-open .lst-home-burger span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.lst-home-header.is-open .lst-home-burger span:nth-child(2) {
opacity: 0;
}
.lst-home-header.is-open .lst-home-burger span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.lst-home-nav {
position: absolute;
top: 72px;
left: 0;
right: 0;
display: grid;
grid-template-rows: 0fr;
justify-content: stretch;
overflow: hidden;
background: rgba(5, 5, 5, 0.98);
border-top: 1px solid rgba(198, 154, 82, 0.16);
border-bottom: 1px solid rgba(198, 154, 82, 0.18);
opacity: 0;
transition: grid-template-rows 280ms ease, opacity 220ms ease;
}
.lst-home-header.is-compact .lst-home-nav {
top: 64px;
}
.lst-home-header.is-open .lst-home-nav {
grid-template-rows: 1fr;
opacity: 1;
}
.lst-home-nav__list {
flex-direction: column;
align-items: stretch;
justify-content: flex-start;
gap: 0;
min-height: 0;
padding: 18px 32px 22px;
}
.lst-home-nav__list a {
justify-content: center;
min-height: 56px;
font-size: 15px;
}
.lst-home-nav__reserve {
display: inline-flex;
width: calc(100% - 64px);
margin: 0 32px 28px;
}
.lst-hero {
min-height: 640px;
}
.lst-hero__content {
padding-top: 86px;
}
.lst-hero__title {
font-size: 52px;
}
.lst-hero__content {
grid-template-columns: 1fr;
align-content: center;
gap: 32px;
}
.lst-hero__booking {
justify-self: start;
width: min(100%, 430px);
}
.lst-feature-strip__grid {
grid-template-columns: repeat(2, 1fr);
}
.lst-feature-strip__item {
min-height: 82px;
}
.lst-feature-strip__item:nth-child(3) {
border-left: 0;
}
.lst-feature-strip__item:nth-child(n+3) {
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lst-overview__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lst-experience__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lst-equipment,
.lst-services {
grid-template-columns: 1fr;
}
.lst-equipment__copy,
.lst-services__content {
padding: 56px 32px;
}
.lst-equipment__media,
.lst-services__media,
.lst-services__media img {
min-height: 360px;
}
.lst-paris {
grid-template-columns: 1fr;
}
.lst-paris__image,
.lst-paris__image img {
min-height: 300px;
}
.lst-paris__content {
min-height: auto;
padding: 48px 32px;
border-left: 0;
border-right: 0;
border-top: 1px solid rgba(198, 154, 82, 0.26);
border-bottom: 1px solid rgba(198, 154, 82, 0.26);
}
.lst-trust__grid {
grid-template-columns: 1fr;
gap: 36px;
text-align: center;
}
.lst-trust__items {
grid-template-columns: repeat(3, minmax(0, 1fr));
text-align: left;
}
.lst-reviews__heading {
grid-template-columns: 1fr;
gap: 16px;
}
.lst-reviews__heading .lst-section-title {
max-width: 720px;
}
.lst-review-card {
flex-basis: 266px;
}
.lst-press__logos {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lst-home-footer__grid {
grid-template-columns: 1.2fr 1fr;
}
}
@media (max-width: 767px) {
.lst-home-container,
.lst-hero__content {
width: calc(100% - 40px);
}
.lst-overline {
font-size: 11px;
letter-spacing: 0.13em;
}
.lst-section-title {
font-size: 32px;
}
.lst-split-title {
font-size: 32px;
line-height: 1.08;
}
.lst-home-header__inner {
width: calc(100% - 40px);
}
.lst-home-nav__list {
padding-right: 20px;
padding-left: 20px;
}
.lst-home-nav__reserve {
width: calc(100% - 40px);
margin-right: 20px;
margin-left: 20px;
}
.lst-mobile-call {
position: fixed;
right: 18px;
bottom: 18px;
z-index: 60;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 48px;
padding: 0 16px;
border: 1px solid rgba(198, 154, 82, 0.65);
border-radius: 999px;
background: rgba(5, 5, 5, 0.90);
color: var(--lst-gold-light);
box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
backdrop-filter: blur(10px);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.lst-mobile-call .lst-icon {
width: 17px;
height: 17px;
}
.lst-hero {
align-items: flex-start;
min-height: 980px;
}
.lst-hero__slide img {
object-position: center;
filter: brightness(1.24) contrast(1.03) saturate(1.14) sepia(0.05);
}
.lst-hero__shade {
background:
linear-gradient(90deg, rgba(3, 2, 2, 0.58) 0%, rgba(8, 5, 4, 0.42) 55%, rgba(8, 5, 4, 0.22) 100%),
linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.22) 100%);
}
.lst-hero__copy::before {
inset: -24px -18px -24px -18px;
border-radius: 24px;
background:
radial-gradient(circle at 22% 26%, rgba(0, 0, 0, 0.52), transparent 64%),
linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.16));
}
.lst-hero__content {
padding-top: 148px;
padding-bottom: 54px;
}
.lst-hero__title {
margin-top: 14px;
font-size: 36px;
line-height: 1.03;
}
.lst-hero__text {
font-size: 15px;
}
.lst-hero__actions {
align-items: stretch;
}
.lst-hero__actions .lst-home-btn {
width: 100%;
}
.lst-hero__booking {
width: 100%;
padding: 6px;
border-radius: 20px;
}
.lst-feature-strip__grid {
width: 100%;
}
.lst-feature-strip__item {
flex-direction: column;
gap: 7px;
min-height: 92px;
padding: 14px 10px;
text-align: center;
}
.lst-overview {
padding: 42px 0;
}
.lst-overview__grid {
grid-template-columns: 1fr;
}
.lst-overview-card {
min-height: auto;
}
.lst-section {
padding: 44px 0;
}
.lst-experience__grid {
grid-template-columns: 1fr;
gap: 16px;
margin-top: 28px;
}
.lst-experience-card {
min-height: 150px;
}
.lst-equipment__copy,
.lst-services__content {
padding: 48px 20px;
}
.lst-equipment__amenities {
grid-template-columns: 1fr;
}
.lst-equipment__media {
grid-template-columns: 1fr;
gap: 4px;
min-height: 0;
}
.lst-equipment__image {
min-height: 260px;
aspect-ratio: 16 / 10;
}
.lst-services__grid {
grid-template-columns: 1fr;
}
.lst-service-card__head {
flex-direction: column;
gap: 8px;
}
.lst-services__media,
.lst-services__media img {
min-height: 300px;
}
.lst-paris__image,
.lst-paris__image img {
min-height: auto;
aspect-ratio: 16 / 10;
}
.lst-paris__content {
padding: 44px 20px;
}
.lst-paris__content h2 {
font-size: 32px;
}
.lst-paris__facts {
flex-direction: column;
}
.lst-reviews {
padding: 42px 0 46px;
}
.lst-reviews__heading {
gap: 18px;
}
.lst-reviews__marquee {
margin-top: 24px;
}
.lst-reviews__marquee::before,
.lst-reviews__marquee::after {
width: 48px;
}
.lst-reviews__track {
gap: 12px;
padding: 8px 10px 14px;
animation-duration: 50s;
}
.lst-review-card {
flex-basis: 252px;
min-height: auto;
padding: 18px;
}
.lst-press {
padding: 42px 0;
}
.lst-press__logos {
grid-template-columns: 1fr;
width: 100%;
}
.lst-trust {
padding: 48px 0;
}
.lst-trust__badge img {
width: 170px;
}
.lst-trust__items {
grid-template-columns: 1fr;
gap: 14px;
}
.lst-trust-item,
.lst-trust-item:first-child {
padding: 22px;
border: 1px solid rgba(198, 154, 82, 0.20);
background: rgba(255, 255, 255, 0.03);
}
.lst-trust-item + .lst-trust-item {
border-left: 1px solid rgba(198, 154, 82, 0.20);
}
.lst-final-cta {
min-height: auto;
}
.lst-final-cta__inner {
flex-direction: column;
align-items: flex-start;
min-height: auto;
padding-top: 32px;
padding-bottom: 32px;
}
.lst-final-cta h2 {
font-size: 30px;
}
.lst-final-cta .lst-home-btn {
width: 100%;
}
.lst-final-cta__actions {
width: 100%;
}
.lst-home-footer {
padding-top: 40px;
}
.lst-home-footer__grid {
grid-template-columns: 1fr;
gap: 30px;
}
.lst-home-footer__bottom {
flex-direction: column;
align-items: flex-start;
}
}
@media (max-width: 380px) {
.lst-home-container,
.lst-hero__content,
.lst-home-header__inner {
width: calc(100% - 32px);
}
.lst-hero__title {
font-size: 34px;
}
.lst-home-btn {
padding-right: 22px;
padding-left: 22px;
}
}
@media (prefers-reduced-motion: reduce) {
.lst-home *,
.lst-home *::before,
.lst-home *::after {
scroll-behavior: auto !important;
transition-duration: 0.01ms !important;
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
}
.lst-reveal {
opacity: 1;
transform: none;
}
.lst-hero__slide,
.lst-hero__slide img {
animation: none !important;
}
.lst-hero__slide:first-child {
opacity: 1;
}
.lst-js-enabled .lst-hero__cinema,
.lst-js-enabled .lst-hero__copy .lst-overline,
.lst-js-enabled .lst-hero__title span,
.lst-js-enabled .lst-hero__text,
.lst-js-enabled .lst-hero__badges,
.lst-js-enabled .lst-hero__actions,
.lst-js-enabled .lst-hero__booking {
opacity: 1;
transform: none;
filter: none;
animation: none !important;
}
.lst-equipment__image,
.lst-services__media img,
.lst-paris__image img {
transform: none;
}
.lst-reviews__marquee {
overflow-x: auto;
}
.lst-reviews__track {
animation: none;
transform: none;
}
.lst-review-card[aria-hidden="true"] {
display: none;
}
}body.lst-contact-redesign {
background: #050505;
overflow-x: hidden;
}
body.lst-contact-redesign > header,
body.lst-contact-redesign > footer,
body.lst-contact-redesign .preloader {
display: none !important;
}
.lst-contact-page {
--lst-contact-gold: #c69a52;
--lst-contact-gold-light: #ead29a;
--lst-contact-ivory: #f7efe5;
--lst-contact-cream: #dacdbd;
--lst-contact-muted: #a99d92;
--lst-contact-bordeaux: #74121a;
--lst-contact-panel: rgba(18, 15, 15, 0.78);
--lst-contact-soft: rgba(255, 255, 255, 0.062);
--lst-contact-border: rgba(255, 255, 255, 0.13);
--lst-contact-ease: cubic-bezier(0.22, 1, 0.36, 1);
position: relative;
overflow: hidden;
background:
radial-gradient(circle at 78% 10%, rgba(198, 154, 82, 0.19), transparent 31rem),
radial-gradient(circle at 11% 26%, rgba(116, 18, 26, 0.44), transparent 34rem),
linear-gradient(180deg, #050505 0%, #11080a 38%, #060606 76%, #050505 100%);
color: var(--lst-contact-ivory);
}
.lst-contact-page,
.lst-contact-page * {
box-sizing: border-box;
}
.lst-contact-page::before {
content: "";
position: absolute;
inset: 0;
z-index: 0;
pointer-events: none;
opacity: 0.18;
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 48px 48px;
mask-image: linear-gradient(180deg, #000, transparent 64%);
}
.lst-contact-page > section,
.lst-contact-page > footer {
position: relative;
z-index: 2;
}
.lst-contact-page a:focus-visible,
.lst-contact-page button:focus-visible,
.lst-contact-page input:focus-visible,
.lst-contact-page textarea:focus-visible,
.lst-contact-page select:focus-visible {
outline: 2px solid var(--lst-contact-gold-light);
outline-offset: 4px;
}
.lst-contact-hero {
position: relative;
min-height: 520px;
padding: 96px 0 34px;
isolation: isolate;
}
.lst-contact-hero::before {
content: "";
position: absolute;
inset: 0;
z-index: -2;
background:
linear-gradient(115deg, rgba(5, 5, 5, 0.98), rgba(14, 6, 8, 0.9) 49%, rgba(5, 5, 5, 0.74)),
radial-gradient(circle at 74% 42%, rgba(198, 154, 82, 0.22), transparent 24rem),
radial-gradient(circle at 45% 80%, rgba(116, 18, 26, 0.34), transparent 35rem);
}
.lst-contact-hero::after {
content: "";
position: absolute;
right: -12%;
bottom: -18%;
z-index: -1;
width: 70%;
height: 52%;
border-radius: 50%;
background: radial-gradient(ellipse at center, rgba(198, 154, 82, 0.16), transparent 70%);
filter: blur(18px);
transform: translate3d(0, var(--lst-contact-parallax, 0), 0);
}
.lst-contact-hero__ambient {
position: absolute;
inset: 0;
z-index: -1;
pointer-events: none;
overflow: hidden;
}
.lst-contact-hero__ambient span {
position: absolute;
width: 18rem;
height: 18rem;
border-radius: 50%;
background: radial-gradient(circle, rgba(234, 210, 154, 0.18), transparent 68%);
filter: blur(16px);
animation: lstContactHalo 10s ease-in-out infinite alternate;
}
.lst-contact-hero__ambient span:nth-child(1) {
top: 9%;
left: 54%;
}
.lst-contact-hero__ambient span:nth-child(2) {
right: -8%;
bottom: 18%;
width: 24rem;
height: 24rem;
animation-delay: -4s;
}
.lst-contact-hero__ambient span:nth-child(3) {
left: -8%;
bottom: 10%;
background: radial-gradient(circle, rgba(116, 18, 26, 0.34), transparent 70%);
animation-delay: -7s;
}
.lst-contact-hero__grid {
display: grid;
grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.76fr);
gap: 40px;
align-items: center;
}
.lst-contact-hero h1 {
margin: 8px 0 0;
max-width: 620px;
color: var(--lst-contact-ivory);
font-family: var(--lst-serif);
font-size: clamp(44px, 5.2vw, 76px);
font-weight: 500;
line-height: 0.92;
letter-spacing: 0;
}
.lst-contact-hero__lead {
margin: 16px 0 0;
max-width: 600px;
color: var(--lst-contact-cream);
font-size: 15px;
line-height: 1.55;
}
.lst-contact-hero__actions,
.lst-contact-cta__inner div {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 20px;
}
.lst-contact-hero__visual {
position: relative;
min-height: 330px;
border: 1px solid rgba(198, 154, 82, 0.32);
border-radius: 4px;
overflow: hidden;
background: #090606;
box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
}
.lst-contact-hero__visual::before,
.lst-contact-hero__visual::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
}
.lst-contact-hero__visual::before {
z-index: 1;
background:
linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.62)),
radial-gradient(circle at 72% 18%, rgba(234, 210, 154, 0.18), transparent 18rem);
}
.lst-contact-hero__visual::after {
z-index: 2;
border: 1px solid rgba(255, 255, 255, 0.09);
transform: translate(14px, 14px);
}
.lst-contact-hero__visual img {
width: 100%;
height: 100%;
min-height: 330px;
object-fit: cover;
object-position: center;
filter: saturate(0.82) contrast(1.05) brightness(0.74);
transform: scale(1.035);
transition: transform 900ms var(--lst-contact-ease), filter 900ms var(--lst-contact-ease);
}
.lst-contact-hero__visual:hover img {
filter: saturate(0.95) contrast(1.08) brightness(0.82);
transform: scale(1.07);
}
.lst-contact-hero__glass {
position: absolute;
right: 18px;
bottom: 18px;
z-index: 3;
width: min(78%, 280px);
padding: 15px;
border: 1px solid rgba(234, 210, 154, 0.28);
background: rgba(8, 6, 6, 0.66);
box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
backdrop-filter: blur(18px) saturate(1.1);
}
.lst-contact-hero__glass span,
.lst-contact-info-card span:not(.lst-contact-icon) {
color: var(--lst-contact-gold-light);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.lst-contact-hero__glass strong {
display: block;
margin-top: 6px;
color: var(--lst-contact-ivory);
font-family: var(--lst-serif);
font-size: 21px;
font-weight: 500;
line-height: 1.08;
}
.lst-contact-hero__glass p {
margin: 7px 0 0;
color: var(--lst-contact-cream);
font-size: 12px;
line-height: 1.5;
}
.lst-contact-main {
padding: 48px 0;
}
.lst-contact-main__grid {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
gap: 20px;
align-items: start;
}
.lst-contact-form-card,
.lst-contact-info,
.lst-contact-access__copy,
.lst-contact-map-card,
.lst-contact-cta__inner {
position: relative;
border: 1px solid var(--lst-contact-border);
background:
linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
rgba(10, 8, 8, 0.74);
box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(18px) saturate(1.08);
}
.lst-contact-form-card {
padding: clamp(22px, 2.6vw, 34px);
overflow: hidden;
}
.lst-contact-form-card::before,
.lst-contact-info::before,
.lst-contact-cta__inner::before {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background: linear-gradient(110deg, transparent 0%, rgba(234, 210, 154, 0.12) 42%, transparent 58%);
opacity: 0;
transform: translateX(-70%);
transition: opacity 500ms ease, transform 900ms var(--lst-contact-ease);
}
.lst-contact-form-card:hover::before,
.lst-contact-info:hover::before,
.lst-contact-cta__inner:hover::before {
opacity: 1;
transform: translateX(70%);
}
.lst-contact-form-card h2,
.lst-contact-info__intro h2,
.lst-contact-access__copy h2,
.lst-contact-cta h2 {
margin: 7px 0 0;
color: var(--lst-contact-ivory);
font-family: var(--lst-serif);
font-size: clamp(26px, 2.7vw, 38px);
font-weight: 500;
line-height: 1.02;
letter-spacing: 0;
}
.lst-contact-form-card > p:not(.lst-overline),
.lst-contact-access__copy > p,
.lst-contact-cta p {
margin: 12px 0 0;
max-width: 700px;
color: var(--lst-contact-cream);
font-size: 14px;
line-height: 1.5;
}
.lst-contact-form {
margin-top: 18px;
}
.lst-contact-form .wpcf7 form {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
}
.lst-contact-form .wpcf7 form > p {
display: contents;
}
.lst-contact-form .wpcf7 label {
display: grid;
gap: 6px;
min-width: 0;
color: var(--lst-contact-cream);
font-size: 11.5px;
font-weight: 700;
letter-spacing: 0.04em;
}
.lst-contact-form .wpcf7 label.is-focused {
color: var(--lst-contact-gold-light);
}
.lst-contact-form .wpcf7 label:has(textarea),
.lst-contact-form .wpcf7 form > p:has(textarea),
.lst-contact-form .wpcf7 form > p:last-of-type {
grid-column: 1 / -1;
}
.lst-contact-form .wpcf7-form-control-wrap {
display: block;
min-width: 0;
}
.lst-contact-form input,
.lst-contact-form textarea,
.lst-contact-form select {
width: 100%;
min-width: 0;
min-height: 40px;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 2px;
background: rgba(255, 255, 255, 0.055);
color: var(--lst-contact-ivory);
font: inherit;
font-size: 13.5px;
line-height: 1.4;
padding: 9px 11px;
transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.lst-contact-form .wpcf7 input.wpcf7-form-control:not([type="submit"]),
.lst-contact-form .wpcf7 textarea.wpcf7-form-control,
.lst-contact-form .wpcf7 select.wpcf7-form-control {
width: 100% !important;
max-width: 100% !important;
min-height: 40px !important;
border-color: rgba(255, 255, 255, 0.15) !important;
background-color: rgba(255, 255, 255, 0.055) !important;
color: var(--lst-contact-ivory) !important;
padding: 9px 11px !important;
}
.lst-contact-form .wpcf7 input.wpcf7-form-control::placeholder,
.lst-contact-form .wpcf7 textarea.wpcf7-form-control::placeholder {
color: rgba(247, 239, 229, 0.46);
}
.lst-contact-form textarea {
min-height: 76px !important;
height: 82px !important;
resize: vertical;
}
.lst-contact-form select {
color: var(--lst-contact-ivory);
}
.lst-contact-form option {
background: #100b0c;
color: var(--lst-contact-ivory);
}
.lst-contact-form input:hover,
.lst-contact-form textarea:hover,
.lst-contact-form select:hover,
.lst-contact-form input:focus,
.lst-contact-form textarea:focus,
.lst-contact-form select:focus {
border-color: rgba(234, 210, 154, 0.68);
background: rgba(255, 255, 255, 0.082);
box-shadow: 0 0 0 4px rgba(198, 154, 82, 0.08);
}
.lst-contact-form .wpcf7-submit {
width: auto;
min-width: 148px;
min-height: 40px;
padding: 0 22px;
border-color: var(--lst-contact-gold);
background: var(--lst-contact-gold);
color: #0c0908;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.04em;
text-transform: uppercase;
cursor: pointer;
box-shadow: 0 12px 34px rgba(198, 154, 82, 0.22);
}
.lst-contact-form .wpcf7-submit:hover {
transform: translateY(-2px);
border-color: var(--lst-contact-gold-light);
background: var(--lst-contact-gold-light);
box-shadow: 0 20px 54px rgba(198, 154, 82, 0.36);
}
.lst-contact-form .wpcf7-spinner {
align-self: center;
}
.lst-contact-form .wpcf7-not-valid-tip {
margin-top: 7px;
color: #ffb5b5;
font-size: 12px;
}
.lst-contact-form .wpcf7-response-output {
grid-column: 1 / -1;
margin: 6px 0 0 !important;
padding: 12px 14px !important;
border-color: rgba(234, 210, 154, 0.45) !important;
color: var(--lst-contact-cream);
}
.lst-contact-info {
padding: 20px;
position: sticky;
top: 88px;
}
.lst-contact-info__cards {
display: grid;
gap: 8px;
margin-top: 14px;
}
.lst-contact-info-card {
position: relative;
display: grid;
grid-template-columns: 32px 1fr;
gap: 2px 10px;
min-height: 66px;
padding: 12px;
border: 1px solid rgba(255, 255, 255, 0.11);
background: rgba(255, 255, 255, 0.045);
color: inherit;
text-decoration: none;
overflow: hidden;
transition: border-color 260ms ease, background-color 260ms ease, transform 260ms var(--lst-contact-ease), box-shadow 260ms ease;
}
.lst-contact-info-card::after {
content: "";
position: absolute;
inset: auto 12px 0 54px;
height: 1px;
background: linear-gradient(90deg, rgba(198, 154, 82, 0.6), transparent);
transform: scaleX(0);
transform-origin: left;
transition: transform 320ms var(--lst-contact-ease);
}
.lst-contact-info-card:hover {
border-color: rgba(234, 210, 154, 0.34);
background: rgba(255, 255, 255, 0.07);
box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
transform: translateY(-3px);
}
.lst-contact-info-card:hover::after {
transform: scaleX(1);
}
.lst-contact-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 31px;
height: 31px;
border: 1px solid rgba(198, 154, 82, 0.36);
border-radius: 50%;
color: var(--lst-contact-gold-light);
grid-row: span 2;
}
.lst-contact-icon svg {
width: 17px;
height: 17px;
fill: none;
stroke: currentColor;
stroke-width: 1.55;
stroke-linecap: round;
stroke-linejoin: round;
}
.lst-contact-info-card strong {
color: var(--lst-contact-ivory);
font-size: 14px;
font-weight: 650;
line-height: 1.45;
}
.lst-contact-access {
padding: 42px 0 118px;
}
.lst-contact-access__grid {
display: grid;
grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
gap: 30px;
align-items: stretch;
}
.lst-contact-access__copy {
padding: clamp(30px, 4vw, 50px);
}
.lst-contact-access__copy ul {
display: grid;
gap: 14px;
margin: 28px 0 0;
padding: 0;
list-style: none;
}
.lst-contact-access__copy li {
display: grid;
grid-template-columns: 40px auto 1fr;
gap: 12px;
align-items: center;
color: var(--lst-contact-cream);
font-size: 15px;
line-height: 1.55;
}
.lst-contact-access__copy li strong {
color: var(--lst-contact-ivory);
}
.lst-contact-map-card {
min-height: 500px;
overflow: hidden;
background:
radial-gradient(circle at 70% 18%, rgba(198, 154, 82, 0.2), transparent 14rem),
radial-gradient(circle at 24% 84%, rgba(116, 18, 26, 0.34), transparent 18rem),
linear-gradient(145deg, rgba(19, 14, 14, 0.9), rgba(5, 5, 5, 0.92));
transform-style: preserve-3d;
transition: transform 320ms var(--lst-contact-ease), box-shadow 320ms ease;
}
.lst-contact-map-card::before {
content: "";
position: absolute;
inset: 28px;
border: 1px solid rgba(198, 154, 82, 0.18);
background-image:
linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
background-size: 38px 38px;
opacity: 0.68;
}
.lst-contact-map-card::after {
content: "Paris 16e";
position: absolute;
left: 38px;
top: 34px;
color: rgba(247, 239, 229, 0.10);
font-family: var(--lst-serif);
font-size: clamp(58px, 8vw, 118px);
line-height: 0.9;
}
.lst-contact-map-card__line {
position: absolute;
left: 18%;
right: 12%;
top: 52%;
height: 2px;
background: linear-gradient(90deg, rgba(198, 154, 82, 0), rgba(234, 210, 154, 0.7), rgba(116, 18, 26, 0.75));
transform: rotate(-21deg);
box-shadow: 0 0 24px rgba(198, 154, 82, 0.18);
}
.lst-contact-map-card__marker {
position: absolute;
z-index: 2;
display: grid;
gap: 5px;
min-width: 168px;
padding: 16px 18px;
border: 1px solid rgba(234, 210, 154, 0.22);
background: rgba(5, 5, 5, 0.64);
box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
backdrop-filter: blur(14px);
transform: translateZ(26px);
}
.lst-contact-map-card__marker span {
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--lst-contact-gold-light);
box-shadow: 0 0 0 7px rgba(198, 154, 82, 0.14), 0 0 30px rgba(198, 154, 82, 0.4);
}
.lst-contact-map-card__marker strong {
color: var(--lst-contact-ivory);
font-family: var(--lst-serif);
font-size: 24px;
font-weight: 500;
line-height: 1;
}
.lst-contact-map-card__marker small {
color: var(--lst-contact-muted);
font-size: 12px;
}
.lst-contact-map-card__marker.is-suite {
left: 46%;
top: 38%;
}
.lst-contact-map-card__marker.is-passy {
left: 12%;
bottom: 16%;
}
.lst-contact-map-card__marker.is-eiffel {
right: 10%;
top: 15%;
}
.lst-contact-access {
--access-black: #050506;
--access-black-soft: #0b0a09;
--access-panel: rgba(13, 12, 10, 0.82);
--access-panel-border: rgba(211, 174, 99, 0.45);
--access-gold: #d3ae63;
--access-gold-bright: #f2d587;
--access-cream: #f3eee1;
--access-muted: #b6b0a4;
--access-line: rgba(211, 174, 99, 0.22);
--access-wine: #55101a;
position: relative;
padding: clamp(32px, 3.2vw, 52px) clamp(22px, 4.2vw, 62px) clamp(36px, 3.8vw, 60px);
overflow: hidden;
background:
radial-gradient(circle at 0 42%, rgba(85, 16, 26, 0.58), transparent 29rem),
radial-gradient(circle at 82% 18%, rgba(211, 174, 99, 0.09), transparent 31rem),
linear-gradient(115deg, #060505 0%, #090607 34%, #030304 100%);
}
.lst-contact-access::before {
content: "";
position: absolute;
inset: 0;
z-index: 0;
pointer-events: none;
background:
linear-gradient(90deg, rgba(211, 174, 99, 0.13), transparent 1px) calc(50% - 3px) 0 / 1px 100% no-repeat,
radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 19rem),
linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22%);
opacity: 0.74;
}
.lst-contact-access::after {
content: "";
position: absolute;
left: -7%;
bottom: -10%;
z-index: 0;
width: 28rem;
height: 30rem;
pointer-events: none;
background:
linear-gradient(120deg, transparent 22%, rgba(120, 19, 28, 0.26), transparent 58%),
radial-gradient(ellipse at 42% 100%, rgba(211, 174, 99, 0.12), transparent 66%);
filter: blur(1px);
transform: rotate(-10deg);
}
.lst-contact-access__stage {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: clamp(360px, 34vw, 500px) minmax(0, 1fr);
gap: clamp(24px, 3.4vw, 48px);
width: min(1540px, 100%);
min-height: clamp(500px, 35vw, 590px);
margin: 0 auto;
align-items: stretch;
}
.lst-contact-access__panel {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
min-height: clamp(500px, 35vw, 590px);
padding: clamp(24px, 2.4vw, 40px);
overflow: hidden;
border: 1px solid var(--access-panel-border);
border-radius: 12px;
background:
radial-gradient(circle at 0 100%, rgba(85, 16, 26, 0.24), transparent 25rem),
radial-gradient(circle at 70% 12%, rgba(255, 255, 255, 0.08), transparent 20rem),
linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
var(--access-panel);
box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.08),
0 26px 70px rgba(0, 0, 0, 0.42);
backdrop-filter: blur(18px) saturate(1.04);
}
.lst-contact-access__panel::before {
content: "";
position: absolute;
inset: 1px;
pointer-events: none;
border-radius: 11px;
background:
linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 32%),
radial-gradient(circle at 50% 100%, rgba(211, 174, 99, 0.12), transparent 34rem);
opacity: 0.78;
}
.lst-contact-access__eyebrow,
.lst-contact-access__panel h2,
.lst-contact-access__panel p,
.lst-contact-access__routes,
.lst-contact-access__cta,
.lst-contact-access__rule {
position: relative;
z-index: 2;
}
.lst-contact-access__eyebrow {
display: inline-flex;
gap: 12px;
align-items: center;
margin: 0 0 12px;
color: var(--access-gold-bright);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.28em;
text-transform: uppercase;
}
.lst-contact-access__eyebrow img {
width: 38px;
height: 16px;
object-fit: contain;
filter: brightness(0) saturate(100%) invert(84%) sepia(30%) saturate(644%) hue-rotate(3deg) brightness(101%) contrast(90%);
}
.lst-contact-access__panel h2 {
max-width: 640px;
margin: 0;
color: var(--access-cream);
font-family: var(--lst-serif);
font-size: clamp(32px, 2.62vw, 50px);
font-weight: 500;
line-height: 1;
letter-spacing: 0;
text-wrap: balance;
text-shadow: 0 2px 24px rgba(255, 245, 221, 0.16);
}
.lst-contact-access__rule {
width: 142px;
height: 1px;
margin: 13px 0 14px;
background: linear-gradient(90deg, var(--access-gold-bright), rgba(211, 174, 99, 0.42), transparent);
}
.lst-contact-access__rule::before,
.lst-contact-access__rule::after {
content: "";
position: absolute;
top: -3px;
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--access-gold-bright);
box-shadow: 0 0 18px rgba(242, 213, 135, 0.52);
}
.lst-contact-access__rule::before {
left: 30px;
}
.lst-contact-access__rule::after {
left: 44px;
}
.lst-contact-access__panel > p {
max-width: 620px;
margin: 0;
color: var(--access-cream);
font-size: clamp(13px, 0.95vw, 15px);
line-height: 1.48;
}
.lst-contact-access__routes {
display: grid;
margin: 18px 0 0;
padding: 0;
list-style: none;
border-top: 1px solid var(--access-line);
}
.lst-contact-access__routes li {
display: grid;
grid-template-columns: 38px 70px minmax(0, 1fr);
gap: 14px;
align-items: center;
min-height: 48px;
border-bottom: 1px solid var(--access-line);
color: var(--access-muted);
font-size: clamp(12px, 0.86vw, 14px);
line-height: 1.35;
}
.lst-contact-access__route-icon {
display: grid;
place-items: center;
width: 38px;
height: 38px;
border: 1px solid var(--access-gold);
border-radius: 50%;
color: var(--access-gold-bright);
background:
radial-gradient(circle at 50% 45%, rgba(211, 174, 99, 0.14), transparent 62%),
rgba(6, 5, 5, 0.68);
box-shadow: 0 0 22px rgba(211, 174, 99, 0.1);
}
.lst-contact-access__route-icon img {
width: 17px;
height: 17px;
object-fit: contain;
filter: brightness(0) saturate(100%) invert(84%) sepia(30%) saturate(644%) hue-rotate(3deg) brightness(101%) contrast(90%);
}
.lst-contact-access__routes strong {
color: var(--access-gold-bright);
font-size: clamp(12px, 0.86vw, 14px);
font-weight: 800;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.lst-contact-access__cta {
display: flex;
align-items: center;
justify-content: space-between;
width: min(100%, 420px);
min-height: 52px;
margin-top: 18px;
padding: 0 20px 0 26px;
border: 1px solid var(--access-gold-bright);
border-radius: 5px;
background:
radial-gradient(circle at 46% 0, rgba(242, 213, 135, 0.34), transparent 3px),
linear-gradient(97deg, rgba(85, 16, 26, 0.9), rgba(12, 8, 8, 0.93) 55%, rgba(97, 24, 31, 0.65));
color: var(--access-gold-bright);
font-size: clamp(12px, 0.9vw, 14px);
font-weight: 800;
letter-spacing: 0.04em;
text-transform: uppercase;
box-shadow: 0 0 0 1px rgba(211, 174, 99, 0.1), 0 16px 36px rgba(0, 0, 0, 0.3);
transition: transform 260ms var(--lst-contact-ease), box-shadow 260ms ease, border-color 260ms ease;
}
.lst-contact-access__cta img {
width: 24px;
height: 16px;
filter: brightness(0) saturate(100%) invert(84%) sepia(30%) saturate(644%) hue-rotate(3deg) brightness(101%) contrast(90%);
transition: transform 260ms var(--lst-contact-ease);
}
.lst-contact-access__cta:hover {
color: var(--access-gold-bright);
border-color: #fff0b0;
box-shadow: 0 0 34px rgba(211, 174, 99, 0.18), 0 24px 58px rgba(0, 0, 0, 0.42);
transform: translateY(-2px);
}
.lst-contact-access__cta:hover img {
transform: translateX(8px);
}
.lst-contact-access__map {
position: relative;
min-height: clamp(500px, 35vw, 590px);
overflow: hidden;
border: 1px solid rgba(211, 174, 99, 0.24);
border-left: 1px solid rgba(211, 174, 99, 0.24);
border-radius: 8px;
background: #030304;
transform-style: preserve-3d;
transition: transform 320ms var(--lst-contact-ease);
isolation: isolate;
}
.lst-contact-access__map::before,
.lst-contact-access__map::after {
content: "";
position: absolute;
inset: 0;
z-index: 2;
pointer-events: none;
}
.lst-contact-access__map::before {
background:
radial-gradient(circle at 70% 18%, rgba(211, 174, 99, 0.12), transparent 18rem),
linear-gradient(90deg, rgba(5, 5, 6, 0.55), transparent 30%),
linear-gradient(180deg, rgba(5, 5, 6, 0.1), rgba(5, 5, 6, 0.28));
}
.lst-contact-access__map::after {
box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.54);
}
.lst-contact-access__map-bg,
.lst-contact-access__route-path {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
pointer-events: none;
}
.lst-contact-page .lst-contact-access .lst-contact-access__map-bg,
.lst-contact-page .lst-contact-access .lst-contact-access__route-path {
position: absolute;
}
.lst-contact-access__map-bg {
z-index: 0;
opacity: 0.9;
filter: saturate(0.94) contrast(1.06) brightness(0.86);
}
.lst-contact-access__route-path {
z-index: 3;
opacity: 0.92;
object-position: center;
filter: drop-shadow(0 0 12px rgba(242, 213, 135, 0.18));
}
.lst-contact-access__map-title {
position: absolute;
top: 5%;
left: 6%;
z-index: 3;
color: rgba(243, 238, 225, 0.082);
font-family: var(--lst-serif);
font-size: clamp(62px, 7vw, 112px);
line-height: 0.8;
white-space: nowrap;
pointer-events: none;
}
.lst-contact-location-card {
position: absolute;
z-index: 5;
display: grid;
grid-template-columns: 22px minmax(0, 1fr) minmax(58px, 22%);
gap: 12px;
align-items: center;
min-height: 94px;
padding: 12px 13px 11px;
overflow: hidden;
border: 1px solid rgba(211, 174, 99, 0.76);
border-radius: 10px;
background:
radial-gradient(circle at 35% 0, rgba(255, 255, 255, 0.1), transparent 16rem),
linear-gradient(145deg, rgba(28, 26, 22, 0.92), rgba(5, 5, 6, 0.88));
box-shadow: 0 20px 52px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
backdrop-filter: blur(10px);
transform: translateZ(28px);
}
.lst-contact-location-card::before {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background: linear-gradient(112deg, rgba(255, 255, 255, 0.12), transparent 32%);
opacity: 0.55;
}
.lst-contact-location-card__pin,
.lst-contact-location-card > div,
.lst-contact-location-card__visual {
position: relative;
z-index: 2;
}
.lst-contact-location-card__pin {
align-self: start;
width: 20px;
height: 25px;
margin-top: 2px;
filter: brightness(0) saturate(100%) invert(84%) sepia(30%) saturate(644%) hue-rotate(3deg) brightness(101%) contrast(90%);
}
.lst-contact-location-card strong {
display: block;
color: var(--access-cream);
font-family: var(--lst-serif);
font-size: clamp(18px, 1.35vw, 24px);
font-weight: 500;
line-height: 1.02;
letter-spacing: 0;
text-shadow: 0 2px 18px rgba(255, 245, 221, 0.14);
}
.lst-contact-location-card span {
display: block;
margin-top: 8px;
color: var(--access-muted);
font-size: clamp(12px, 0.9vw, 14px);
line-height: 1.1;
}
.lst-contact-location-card--suite span {
color: var(--access-gold-bright);
}
.lst-contact-location-card__visual {
width: 100%;
max-height: 96px;
object-fit: contain;
justify-self: end;
align-self: end;
opacity: 0.72;
filter: sepia(0.24) saturate(0.86) brightness(0.74) contrast(1.08);
}
.lst-contact-location-card--eiffel {
top: 16%;
right: 6.2%;
width: clamp(218px, 31%, 270px);
grid-template-columns: 22px minmax(0, 1fr) 58px;
}
.lst-contact-location-card--eiffel strong {
white-space: nowrap;
}
.lst-contact-location-card--suite {
top: 39%;
left: 20%;
width: clamp(360px, 63%, 460px);
min-height: 128px;
grid-template-columns: 22px minmax(0, 1fr) minmax(78px, 25%);
padding: 17px 17px 14px;
}
.lst-contact-location-card--suite strong {
font-size: clamp(23px, 1.65vw, 30px);
}
.lst-contact-location-card--passy {
left: 9%;
bottom: 15%;
width: clamp(190px, 26%, 230px);
}
.lst-contact-location-card--passy strong {
font-size: clamp(18px, 1.35vw, 24px);
}
.lst-contact-access__compass {
position: absolute;
right: 3.8%;
bottom: 5.6%;
z-index: 4;
width: clamp(70px, 5.6vw, 98px);
height: auto;
opacity: 0.86;
filter: drop-shadow(0 0 18px rgba(211, 174, 99, 0.16));
}
.lst-contact-page .lst-contact-access .lst-contact-access__compass {
position: absolute;
}
.lst-contact-cta {
padding: 0 0 52px;
}
.lst-contact-cta__inner {
padding: clamp(22px, 3vw, 34px);
text-align: center;
overflow: hidden;
}
.lst-contact-cta__inner h2,
.lst-contact-cta__inner p {
margin-left: auto;
margin-right: auto;
}
.lst-contact-cta__inner div {
justify-content: center;
}
@keyframes lstContactHalo {
from {
opacity: 0.56;
transform: translate3d(0, 0, 0) scale(0.94);
}
to {
opacity: 0.92;
transform: translate3d(18px, -16px, 0) scale(1.06);
}
}
@media (max-width: 1199px) {
.lst-contact-hero__grid,
.lst-contact-main__grid,
.lst-contact-access__grid {
grid-template-columns: 1fr;
}
.lst-contact-info {
position: relative;
top: auto;
}
.lst-contact-info__cards {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lst-contact-hero__visual,
.lst-contact-hero__visual img {
min-height: 320px;
}
}
@media (max-width: 767px) {
.lst-contact-hero {
min-height: auto;
padding: 92px 0 34px;
}
.lst-contact-hero__grid {
gap: 24px;
}
.lst-contact-hero h1 {
font-size: clamp(36px, 10.5vw, 52px);
}
.lst-contact-hero__lead {
font-size: 14px;
line-height: 1.55;
}
.lst-contact-hero__actions,
.lst-contact-cta__inner div {
flex-direction: column;
}
.lst-contact-hero__actions .lst-home-btn,
.lst-contact-cta__inner .lst-home-btn {
width: 100%;
}
.lst-contact-hero__visual,
.lst-contact-hero__visual img {
min-height: 250px;
}
.lst-contact-hero__glass {
left: 12px;
right: 12px;
bottom: 12px;
width: auto;
padding: 14px;
}
.lst-contact-main {
padding: 42px 0;
}
.lst-contact-cta {
padding-bottom: 44px;
}
.lst-contact-form .wpcf7 form,
.lst-contact-info__cards {
grid-template-columns: 1fr;
}
.lst-contact-form input,
.lst-contact-form textarea,
.lst-contact-form select {
min-height: 44px;
}
.lst-contact-access__copy li {
grid-template-columns: 40px 1fr;
}
.lst-contact-access__copy li strong {
display: block;
}
.lst-contact-map-card {
min-height: 430px;
}
.lst-contact-map-card::before {
inset: 18px;
}
.lst-contact-map-card__marker {
min-width: 138px;
padding: 14px;
}
.lst-contact-map-card__marker strong {
font-size: 20px;
}
.lst-contact-map-card__marker.is-suite {
left: 34%;
top: 38%;
}
.lst-contact-map-card__marker.is-passy {
left: 8%;
bottom: 13%;
}
.lst-contact-map-card__marker.is-eiffel {
right: 7%;
top: 13%;
}
}
@media (max-width: 420px) {
.lst-contact-form-card,
.lst-contact-info,
.lst-contact-access__copy,
.lst-contact-cta__inner {
padding: 18px;
}
.lst-contact-map-card__marker.is-suite {
left: 26%;
}
}
@media (max-width: 1199px) {
.lst-contact-access__stage {
grid-template-columns: 1fr;
min-height: auto;
gap: 24px;
}
.lst-contact-access__panel {
min-height: auto;
}
.lst-contact-access__map {
min-height: clamp(500px, 64vw, 620px);
border-left: 0;
border-top: 1px solid rgba(211, 174, 99, 0.24);
}
}
@media (max-width: 767px) {
.lst-contact-access {
padding: 52px 20px 62px;
}
.lst-contact-access::before {
background:
radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.06), transparent 14rem),
linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 20%);
}
.lst-contact-access__stage {
gap: 22px;
}
.lst-contact-access__panel {
padding: 28px 24px 26px;
border-radius: 9px;
}
.lst-contact-access__eyebrow {
margin-bottom: 16px;
font-size: 12px;
letter-spacing: 0.23em;
}
.lst-contact-access__eyebrow img {
width: 42px;
}
.lst-contact-access__panel h2 {
font-size: clamp(36px, 10.5vw, 50px);
}
.lst-contact-access__panel > p {
font-size: 15px;
line-height: 1.56;
}
.lst-contact-access__routes {
margin-top: 22px;
}
.lst-contact-access__routes li {
grid-template-columns: 42px 1fr;
gap: 10px 16px;
min-height: 62px;
padding: 10px 0;
}
.lst-contact-access__routes li > span:last-child {
grid-column: 2;
}
.lst-contact-access__route-icon {
grid-row: span 2;
width: 42px;
height: 42px;
}
.lst-contact-access__cta {
width: 100%;
min-height: 56px;
padding: 0 22px;
font-size: 14px;
}
.lst-contact-access__map {
min-height: 480px;
}
.lst-contact-access__map-title {
top: 6%;
left: 6%;
font-size: clamp(54px, 17vw, 78px);
}
.lst-contact-access__route-path {
width: 126%;
max-width: none;
left: -22%;
object-fit: fill;
}
.lst-contact-location-card {
grid-template-columns: 22px minmax(0, 1fr) 58px;
gap: 10px;
min-height: 102px;
padding: 14px 13px;
border-radius: 8px;
}
.lst-contact-location-card__pin {
width: 20px;
height: 25px;
}
.lst-contact-location-card strong {
font-size: 22px;
}
.lst-contact-location-card span {
margin-top: 7px;
font-size: 13px;
}
.lst-contact-location-card__visual {
max-height: 74px;
}
.lst-contact-location-card--eiffel {
top: 16%;
right: 4%;
width: 48%;
}
.lst-contact-location-card--eiffel strong {
white-space: normal;
}
.lst-contact-location-card--suite {
top: 40%;
left: 8%;
width: 84%;
min-height: 126px;
grid-template-columns: 24px minmax(0, 1fr) 88px;
padding: 16px 14px;
}
.lst-contact-location-card--passy {
left: 5%;
bottom: 17%;
width: 51%;
}
.lst-contact-location-card--passy strong {
font-size: 21px;
}
.lst-contact-access__compass {
right: 5%;
bottom: 5%;
width: 70px;
}
}
@media (max-width: 420px) {
.lst-contact-access__map {
min-height: 460px;
}
.lst-contact-location-card--eiffel {
width: 50%;
}
.lst-contact-location-card--passy {
width: 54%;
}
}
@media (prefers-reduced-motion: reduce) {
.lst-contact-page *,
.lst-contact-page *::before,
.lst-contact-page *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
scroll-behavior: auto !important;
transition-duration: 0.01ms !important;
}
.lst-contact-map-card {
transform: none !important;
}
}.lst-home-footer .lst-home-footer__grid {
grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(145px, 1fr));
align-items: start;
}
.lst-home-footer__logo,
.lst-home-footer__certification-link {
display: inline-flex;
width: max-content;
}
.lst-home-footer__contact a {
display: inline-flex;
align-items: center;
gap: 8px;
}
.lst-home-footer__icon {
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 17px;
width: 17px;
height: 17px;
color: currentColor;
}
.lst-home-footer__icon svg {
width: 100%;
height: 100%;
fill: none;
stroke: currentColor;
stroke-width: 1.7;
stroke-linecap: round;
stroke-linejoin: round;
}
.lst-home-footer__certification {
display: grid;
gap: 12px;
min-width: 0;
}
.lst-home-footer__certification h3 {
margin-bottom: 2px;
}
.lst-home-footer__certification-link {
padding: 10px;
border: 1px solid rgba(198, 154, 82, 0.24);
border-radius: 6px;
background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}
.lst-home-footer__certification-link:hover,
.lst-home-footer__certification-link:focus-visible {
border-color: rgba(242, 213, 135, 0.58);
background: rgba(198, 154, 82, 0.08);
transform: translateY(-1px);
}
.lst-home-footer__certification img {
display: block;
width: min(100%, 142px);
height: auto;
object-fit: contain;
}
.lst-home-footer__certification p {
max-width: 210px;
margin: 0;
color: var(--lst-gray, #a8a29a);
font-size: 13px;
line-height: 1.55;
}
.lst-home-footer__bottom div {
flex-wrap: wrap;
}
@media (max-width: 1199px) {
.lst-home-footer .lst-home-footer__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 767px) {
.lst-home-footer .lst-home-footer__grid {
grid-template-columns: 1fr;
}
.lst-home-footer__certification p {
max-width: none;
}
}@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://lasuitetrocadero.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}