@import"https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap";@import"https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap";@import"https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap";@import"https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap";@import"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";@import"https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap";@import"https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap";@import"https://fonts.googleapis.com/css2?family=Poiret+One&display=swap";:root{--swatch--black: #000000;--swatch--light: #ffffff;--swatch--yellow: #f4c430;--swatch--off-white: #fafafa;--swatch--red: #d32f2f;--swatch--red-hover: #b71c1c;--duration-fast: .45s;--duration-medium: .75s;--animation-secondary: cubic-bezier(.31, .75, .22, 1);--easing-expo-out: cubic-bezier(.19, 1, .22, 1);--navbar-height: 70px}*{box-sizing:border-box}.navbar{position:fixed;top:0;left:0;right:0;width:100%;background-color:var(--swatch--light);color:var(--swatch--black);padding:1.25rem 2rem;z-index:1000;border-bottom:3px solid var(--swatch--red);transition:all var(--duration-fast) var(--animation-secondary);overflow-x:hidden;box-sizing:border-box}.navbar-container{max-width:1400px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;width:100%;box-sizing:border-box}.navbar-brand{flex-shrink:0}.navbar-brand a{color:var(--swatch--black);text-decoration:none;font-size:1.4rem;font-weight:700;letter-spacing:-.02em;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;transition:color var(--duration-fast) var(--animation-secondary);position:relative;display:inline-block;white-space:nowrap;text-transform:uppercase}.navbar-brand a:hover{color:var(--swatch--red)}.navbar-menu{display:flex;gap:2rem;align-items:center;flex-wrap:nowrap}.navbar-link-wrapper{overflow:hidden;position:relative}.navbar-link{color:var(--swatch--black);text-decoration:none;font-size:.85rem;font-weight:300;letter-spacing:.06em;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;position:relative;display:inline-block;padding:.5rem 0;transition:color var(--duration-fast) var(--animation-secondary);will-change:transform;text-transform:uppercase;white-space:nowrap}.navbar-link-text{display:block;transition:transform var(--duration-medium) var(--animation-secondary)}.navbar-link-text-duplicate{position:absolute;top:100%;left:0;color:var(--swatch--red);transform:translateY(0)}.navbar-link:hover .navbar-link-text:first-child,.navbar-link:hover .navbar-link-text-duplicate{transform:translateY(-100%)}.navbar-link:after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background-color:var(--swatch--red);transition:width var(--duration-fast) var(--easing-expo-out)}.navbar-link:hover:after{width:100%}.navbar-burger{display:none;cursor:pointer;width:30px;height:24px;position:relative;z-index:1001;transition:transform var(--duration-fast) var(--easing-primary)}.navbar-burger:hover{transform:scale(1.1)}.navbar-burger-line{display:block;width:100%;height:2px;background-color:var(--swatch--black);position:absolute;left:0;transition:all var(--duration-fast) var(--easing-expo-out);border-radius:1px}.navbar-burger-line:nth-child(1){top:0}.navbar-burger-line:nth-child(2){top:50%;transform:translateY(-50%)}.navbar-burger-line:nth-child(3){bottom:0}.navbar[data-navigation-status=is-open] .navbar-burger{position:fixed;top:1.25rem;right:2rem;z-index:1003}.navbar[data-navigation-status=is-open] .navbar-burger-line:nth-child(1){top:50%;transform:translateY(-50%) rotate(45deg)}.navbar[data-navigation-status=is-open] .navbar-burger-line:nth-child(2){opacity:0;transform:translate(-20px)}.navbar[data-navigation-status=is-open] .navbar-burger-line:nth-child(3){bottom:50%;transform:translateY(50%) rotate(-45deg)}.navbar-mobile-header{display:none;position:fixed;top:0;left:0;width:100%;padding:1.25rem 2rem;justify-content:space-between;align-items:center;z-index:1002}.navbar[data-navigation-status=is-open] .navbar-mobile-header{display:flex;justify-content:flex-start}.navbar-mobile-brand a{color:var(--swatch--black);text-decoration:none;font-size:1.4rem;font-weight:700;letter-spacing:-.02em;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;text-transform:uppercase}@media(max-width:1300px){.navbar{padding:1.25rem 1.5rem}.navbar-menu{gap:1.8rem}.navbar-link{font-size:.82rem;letter-spacing:.05em}}@media(max-width:1150px){:root{--navbar-height: 65px}.navbar{padding:1rem 1.5rem}.navbar-burger{display:block}.navbar-menu{position:fixed;top:0;left:0;width:100%;height:100vh;background-color:var(--swatch--light);flex-direction:column;justify-content:center;align-items:center;gap:1.5rem;opacity:0;pointer-events:none;transition:opacity var(--duration-medium) var(--animation-secondary);padding-top:var(--navbar-height)}.navbar[data-navigation-status=is-open] .navbar-menu{opacity:1;pointer-events:all}.navbar[data-navigation-status=is-open] .navbar-link-wrapper{animation:slideInMenu var(--duration-medium) var(--easing-expo-out) forwards;animation-delay:calc(.1s + (.08s * var(--i)));opacity:0}.navbar-link{font-size:2.5rem;font-weight:200;line-height:1.2}.navbar-brand a{font-size:1.5rem}}@keyframes slideInMenu{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@container (min-width: 62em){.navbar-menu{gap:3rem}}@container (max-width: 48em){.navbar-brand a{font-size:1.5rem}}.footer{background-color:var(--swatch--black, #000);color:var(--swatch--light, #fff);padding:4rem 3rem 2rem;border-top:4px solid var(--swatch--red, #d32f2f);position:relative}.footer-content{max-width:1400px;margin:0 auto;display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:3rem;margin-bottom:3rem}.footer-brand{display:flex;flex-direction:column;gap:1.25rem;align-items:center}.footer-brand h3{margin:0;font-size:2rem;font-weight:700;letter-spacing:-.02em;text-transform:uppercase;color:var(--swatch--light, #fff);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;transition:color .45s cubic-bezier(.31,.75,.22,1)}.footer-brand h3:hover{color:var(--swatch--red, #d32f2f)}.footer-contact{display:flex;flex-direction:column;gap:.75rem;align-items:center;text-align:center}.footer-address{font-size:.9rem;font-weight:300;color:#ffffffb3;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;line-height:1.5;margin:0}.footer-phone{font-size:.95rem;font-weight:400;color:var(--swatch--red, #d32f2f);text-decoration:none;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;letter-spacing:.02em;transition:color .45s cubic-bezier(.31,.75,.22,1)}.footer-phone:hover{color:var(--swatch--red-hover, #b71c1c)}.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:2.5rem;align-items:center}.footer-links a{color:var(--swatch--light, #fff);text-decoration:none;font-size:.9rem;font-weight:400;letter-spacing:.05em;text-transform:uppercase;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;transition:color .45s cubic-bezier(.31,.75,.22,1);position:relative}.footer-links a:after{content:"";position:absolute;bottom:-4px;left:0;width:0;height:2px;background-color:var(--swatch--red, #d32f2f);transition:width .45s cubic-bezier(.31,.75,.22,1)}.footer-links a:hover{color:var(--swatch--red, #d32f2f)}.footer-links a:hover:after{width:100%}.footer-bottom{max-width:1400px;margin:0 auto;border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;display:flex;flex-direction:column;align-items:center;gap:.5rem;text-align:center}.footer-bottom p{font-size:.85rem;font-weight:300;color:#fff9;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;letter-spacing:.02em;margin:0}.footer-bottom a{color:var(--swatch--red, #d32f2f);text-decoration:underline;font-weight:400;transition:color .45s cubic-bezier(.31,.75,.22,1)}.footer-bottom a:hover{color:var(--swatch--red-hover, #b71c1c)}.iic-link{display:inline-flex;align-items:center;gap:.35rem;vertical-align:middle}.bagel-icon{width:16px;height:16px;object-fit:contain;display:block;flex-shrink:0;transition:transform .45s cubic-bezier(.31,.75,.22,1)}.iic-link:hover .bagel-icon{transform:rotate(15deg) scale(1.1)}@media(min-width:768px){.footer-content{flex-direction:row;align-items:center}.footer-bottom{flex-direction:row;justify-content:space-between}}@media(max-width:768px){.footer{padding:3rem 2rem 1.5rem}.footer-content{gap:2.5rem;margin-bottom:2.5rem}.footer-brand h3{font-size:1.75rem}.footer-address{font-size:.85rem}.footer-phone{font-size:.9rem}.footer-links{gap:2rem}.footer-links a{font-size:.85rem}}@media(max-width:480px){.footer{padding:2.5rem 1.5rem 1.25rem}.footer-content{gap:2rem;margin-bottom:2rem}.footer-brand h3{font-size:1.5rem}.footer-contact{gap:.5rem}.footer-address{font-size:.8rem}.footer-phone{font-size:.85rem}.footer-links{gap:1.5rem;flex-direction:column}.footer-links a{font-size:.8rem}.footer-bottom{padding-top:1.5rem}.footer-bottom p{font-size:.8rem}}.hero-split{display:flex;align-items:center;justify-content:space-between;min-height:90vh;padding:2rem 3rem;max-width:1400px;margin:0 auto;margin-top:100px!important;gap:4rem}.hero-content{flex:1;max-width:600px;animation:fadeInUp 1s cubic-bezier(.19,1,.22,1)}.hero-image{flex:1;max-width:650px;animation:fadeIn 1.2s cubic-bezier(.19,1,.22,1)}.hero-image img{width:100%;height:auto;border-radius:0;transition:transform .75s cubic-bezier(.31,.75,.22,1);will-change:transform}.hero-image img:hover{transform:scale(1.02)}.hero-title{font-size:4rem;font-weight:700;letter-spacing:-.02em;line-height:1.1;margin-bottom:1.5rem;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;position:relative;padding-bottom:1rem;text-transform:uppercase}.hero-title:after{content:"";position:absolute;bottom:0;left:0;width:80px;height:4px;background-color:var(--swatch--red, #d32f2f)}.hero-subtitle{font-size:1.15rem;font-weight:300;line-height:1.6;margin-bottom:3rem;color:#000c;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;letter-spacing:.01em}.hero-button{padding:1.1rem 2.5rem;font-size:.95rem;font-weight:400;letter-spacing:.05em;text-transform:uppercase;color:var(--swatch--light, #fff);background-color:var(--swatch--red, #d32f2f);border:2px solid var(--swatch--red, #d32f2f);border-radius:0;cursor:pointer;transition:all .45s cubic-bezier(.31,.75,.22,1);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;position:relative;overflow:hidden}.hero-button:before{content:"";position:absolute;top:0;left:0;width:0;height:100%;background-color:var(--swatch--red-hover, #b71c1c);transition:width .45s cubic-bezier(.31,.75,.22,1);z-index:-1}.hero-button:hover{background-color:var(--swatch--red-hover, #b71c1c);border-color:var(--swatch--red-hover, #b71c1c);transform:translateY(-2px);box-shadow:0 8px 20px #d32f2f4d}.hero-button:hover:before{width:100%}@media(max-width:1200px){.hero-split{padding:2rem;gap:3rem}.hero-title{font-size:3.2rem}}@media(max-width:1024px){.hero-split{padding:2rem;gap:2.5rem}.hero-title{font-size:2.8rem}.hero-subtitle{font-size:1.1rem}}@media(max-width:900px){.hero-split{flex-direction:column;min-height:auto;padding:2rem;gap:3rem}.hero-content{max-width:100%;text-align:center}.hero-image{max-width:100%}.hero-title{font-size:2.5rem}.hero-title:after{left:50%;transform:translate(-50%)}}@media(max-width:768px){.hero-split{padding:1.5rem;gap:2rem}.hero-title{font-size:2.2rem}.hero-subtitle{font-size:1rem;margin-bottom:2rem}.hero-button{padding:1rem 2rem;font-size:.9rem;width:100%;max-width:300px}}@media(max-width:480px){.hero-split{padding:1.5rem 1.25rem}.hero-title{font-size:2rem}.hero-subtitle{font-size:.95rem}}.cards-section{background-color:var(--swatch--off-white, #fafafa);padding:6rem 3rem;position:relative}.cards-container{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:3rem}.card{background:var(--swatch--light, #fff);overflow:hidden;transition:transform .75s cubic-bezier(.31,.75,.22,1);animation:fadeInCard .8s cubic-bezier(.19,1,.22,1) forwards;animation-delay:calc(.1s + (.15s * var(--card-index)));opacity:0;border:1px solid rgba(0,0,0,.06)}.card:hover{transform:translateY(-8px)}.card-image-wrapper{position:relative;width:100%;height:350px;overflow:hidden;background-color:#f5f5f5}.card-image{width:100%;height:100%;object-fit:cover;transition:transform .75s cubic-bezier(.31,.75,.22,1);will-change:transform}.card:hover .card-image{transform:scale(1.05)}.card-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to bottom,#0000,#0000004d);display:flex;align-items:flex-end;padding:1.5rem;opacity:0;transition:opacity .45s cubic-bezier(.31,.75,.22,1)}.card:hover .card-overlay{opacity:1}.card-category{font-size:.85rem;font-weight:400;letter-spacing:.1em;text-transform:uppercase;color:var(--swatch--light, #fff);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif}.card-content{padding:2rem;text-align:left}.card-title{font-size:1.75rem;font-weight:700;letter-spacing:-.02em;margin-bottom:1rem;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;position:relative;padding-bottom:.75rem;text-transform:uppercase}.card-title:after{content:"";position:absolute;bottom:0;left:0;width:40px;height:2px;background-color:var(--swatch--red, #d32f2f);transition:width .45s cubic-bezier(.31,.75,.22,1)}.card:hover .card-title:after{width:60px}.card-description{font-size:1rem;font-weight:300;line-height:1.6;color:#000000bf;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;letter-spacing:.01em}@keyframes fadeInCard{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@media(max-width:1200px){.cards-section{padding:5rem 2rem}.cards-container{gap:2.5rem}}@media(max-width:1024px){.cards-section{padding:4rem 2rem}.cards-container{grid-template-columns:repeat(2,1fr);gap:2rem}.card-image-wrapper{height:300px}}@media(max-width:768px){.cards-section{padding:3rem 1.5rem}.cards-container{grid-template-columns:1fr;gap:2rem}.card-image-wrapper{height:280px}.card-content{padding:1.5rem}.card-title{font-size:1.5rem}.card-description{font-size:.95rem}}@media(max-width:480px){.cards-section{padding:2.5rem 1.25rem}.card-image-wrapper{height:250px}}html{scroll-behavior:smooth}.menu-container{padding:8rem 3rem 6rem;max-width:1200px;margin:0 auto;margin-top:100px!important;background-color:var(--swatch--light, #fff)}.menu-title{text-align:center;font-size:4.5rem;font-weight:700;letter-spacing:-.02em;text-transform:uppercase;margin-bottom:3rem;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;position:relative;padding-bottom:2rem;animation:fadeInTitle .8s cubic-bezier(.19,1,.22,1)}.menu-title:after{content:"";position:absolute;bottom:0;left:50%;transform:translate(-50%);width:120px;height:4px;background-color:var(--swatch--red, #d32f2f)}.menu-nav{position:sticky;top:80px;background-color:var(--swatch--light, #fff);padding:1.5rem 0;border-top:1px solid rgba(0,0,0,.06);border-bottom:3px solid var(--swatch--red, #d32f2f);z-index:100;display:flex;justify-content:flex-start;flex-wrap:nowrap;gap:1.5rem;box-shadow:0 4px 12px #0000000d;margin-bottom:4rem;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;scrollbar-width:thin;scrollbar-color:var(--swatch--red, #d32f2f) transparent}.menu-nav::-webkit-scrollbar{height:4px}.menu-nav::-webkit-scrollbar-track{background:transparent}.menu-nav::-webkit-scrollbar-thumb{background-color:var(--swatch--red, #d32f2f);border-radius:2px}.menu-nav a{text-decoration:none;color:var(--swatch--black, #000);font-weight:400;font-size:.85rem;letter-spacing:.05em;text-transform:uppercase;padding:.5rem 0;transition:all .45s cubic-bezier(.31,.75,.22,1);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;position:relative;overflow:hidden;white-space:nowrap;flex-shrink:0}.menu-nav a:first-child{padding-left:2rem}.menu-nav a:last-child{padding-right:2rem}.menu-nav a:before{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background-color:var(--swatch--red, #d32f2f);transition:width .45s cubic-bezier(.31,.75,.22,1)}.menu-nav a:after{content:"•";position:absolute;right:-.9rem;top:50%;transform:translateY(-50%);color:#0000004d;font-size:.6rem}.menu-nav a:last-child:after{content:none}.menu-nav a:hover{color:var(--swatch--red, #d32f2f)}.menu-nav a:hover:before{width:100%}.menu-category{margin-bottom:3.5rem;padding-top:100px;margin-top:-100px;animation:fadeInUp .8s cubic-bezier(.19,1,.22,1) forwards;animation-delay:.2s;opacity:0;animation-fill-mode:forwards}.menu-category h2{font-size:1.5rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;margin-bottom:1.5rem;position:relative;padding-left:1rem;border-left:4px solid var(--swatch--red, #d32f2f)}.menu-item{display:grid;grid-template-columns:1fr auto;gap:2rem;align-items:start;padding:1.25rem 0;border-bottom:1px solid rgba(0,0,0,.06);transition:all .45s cubic-bezier(.31,.75,.22,1);position:relative}.menu-item:before{content:"";position:absolute;left:-.75rem;top:50%;transform:translateY(-50%);width:3px;height:0;background-color:var(--swatch--red, #d32f2f);transition:height .45s cubic-bezier(.31,.75,.22,1)}.menu-item:hover{padding-left:.75rem;background-color:#00000003}.menu-item:hover:before{height:60%}.menu-item-name{font-weight:500;font-size:1.1rem;letter-spacing:.01em;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;display:block;margin-bottom:.4rem}.menu-item-description{font-size:.95rem;font-weight:300;line-height:1.5;color:#000000a6;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;letter-spacing:.01em;margin-top:.4rem}.menu-item-price{font-weight:600;font-size:1.15rem;color:var(--swatch--red, #d32f2f);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;white-space:nowrap;flex-shrink:0}@media(max-width:1024px){.menu-container{padding:6rem 2rem 4rem}.menu-title{font-size:3.5rem}.menu-category{margin-bottom:3rem}.menu-category h2{font-size:1.4rem;margin-bottom:1.25rem}}@media(max-width:768px){.menu-container{padding:5rem 1.5rem 3rem}.menu-title{font-size:2.8rem;margin-bottom:2rem}.menu-nav{top:70px;padding:1rem 0;gap:1.25rem;margin-bottom:3rem}.menu-nav a{font-size:.8rem}.menu-nav a:first-child{padding-left:1.5rem}.menu-nav a:last-child{padding-right:1.5rem}.menu-category{margin-bottom:2.5rem;padding-top:80px;margin-top:-80px}.menu-category h2{font-size:1.3rem;margin-bottom:1.25rem;padding-left:.75rem;border-left-width:3px}.menu-item{grid-template-columns:1fr;gap:.5rem;padding:1.25rem 0}.menu-item:hover{padding-left:.75rem}.menu-item-name{font-size:1rem}.menu-item-description{font-size:.9rem}.menu-item-price{font-size:1.1rem;margin-top:.25rem}}@media(max-width:480px){.menu-container{padding:4rem 1.25rem 2.5rem}.menu-title{font-size:2.2rem}.menu-nav{padding:.75rem 0;gap:1rem}.menu-nav a{font-size:.75rem}.menu-nav a:first-child{padding-left:1.25rem}.menu-nav a:last-child{padding-right:1.25rem}.menu-category h2{font-size:1.2rem;padding-left:.75rem;border-left-width:3px}}.about-container{padding:8rem 3rem 6rem;max-width:1000px;margin:0 auto;margin-top:100px!important;background-color:var(--swatch--light, #fff)}.about-title{font-size:4.5rem;font-weight:700;letter-spacing:-.02em;text-transform:uppercase;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;margin-bottom:4rem;text-align:center;position:relative;padding-bottom:2rem;animation:fadeInTitle .8s cubic-bezier(.19,1,.22,1)}.about-title:after{content:"";position:absolute;bottom:0;left:50%;transform:translate(-50%);width:120px;height:4px;background-color:var(--swatch--red, #d32f2f)}.about-content{animation:fadeInUp .8s cubic-bezier(.19,1,.22,1) .2s forwards;opacity:0;animation-fill-mode:forwards}.about-content h2{font-size:1.8rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;margin-top:4rem;margin-bottom:1.5rem;padding-left:1rem;border-left:4px solid var(--swatch--red, #d32f2f);text-align:left;position:relative}.about-content h2:first-of-type{margin-top:0}.about-content p{font-size:1.05rem;font-weight:300;line-height:1.8;color:#000c;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;letter-spacing:.01em;margin-bottom:1.5rem;text-align:left;max-width:900px}.about-content p strong{font-weight:600;color:var(--swatch--black, #000)}.about-content .highlight{font-weight:600;color:var(--swatch--red, #d32f2f);transition:color .3s cubic-bezier(.31,.75,.22,1)}.about-content h2:before{content:"";position:absolute;left:-4px;top:0;width:4px;height:0;background-color:var(--swatch--red, #d32f2f);transition:height .45s cubic-bezier(.31,.75,.22,1)}.about-content h2:hover:before{height:100%}@media(max-width:1024px){.about-container{padding:6rem 2rem 4rem}.about-title{font-size:3.5rem}.about-content h2{font-size:1.6rem}}@media(max-width:768px){.about-container{padding:5rem 1.5rem 3rem}.about-title{font-size:2.8rem;margin-bottom:3rem}.about-content h2{font-size:1.4rem;margin-top:3rem;padding-left:.75rem;border-left-width:3px}.about-content p{font-size:1rem}}@media(max-width:480px){.about-container{padding:4rem 1.25rem 2.5rem}.about-title{font-size:2.2rem}.about-content h2{font-size:1.2rem;margin-top:2.5rem}.about-content p{font-size:.95rem;line-height:1.7}}.location-container{padding:8rem 3rem 6rem;max-width:1200px;margin:0 auto;margin-top:100px!important;background-color:var(--swatch--light, #fff)}.location-title{text-align:center;font-size:4.5rem;font-weight:700;letter-spacing:-.02em;text-transform:uppercase;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;margin-bottom:4rem;position:relative;padding-bottom:2rem;animation:fadeInTitle .8s cubic-bezier(.19,1,.22,1)}.location-title:after{content:"";position:absolute;bottom:0;left:50%;transform:translate(-50%);width:120px;height:4px;background-color:var(--swatch--red, #d32f2f)}.location-content{display:grid;grid-template-columns:1fr 1.5fr;gap:4rem;align-items:start;animation:fadeInUp .8s cubic-bezier(.19,1,.22,1) .2s forwards;opacity:0;animation-fill-mode:forwards}.location-details{display:flex;flex-direction:column;gap:2rem}.location-details h2{font-size:1.5rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;margin-bottom:.75rem;padding-left:1rem;border-left:4px solid var(--swatch--red, #d32f2f)}.location-details p{font-size:1.1rem;font-weight:300;line-height:1.7;color:#000c;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;letter-spacing:.01em;margin-bottom:.5rem}.directions-button{display:inline-block;margin-top:1rem;padding:1.1rem 2.5rem;font-size:.95rem;font-weight:400;letter-spacing:.05em;text-transform:uppercase;color:var(--swatch--light, #fff);background-color:var(--swatch--red, #d32f2f);border:2px solid var(--swatch--red, #d32f2f);border-radius:0;text-decoration:none;cursor:pointer;transition:all .45s cubic-bezier(.31,.75,.22,1);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;position:relative;overflow:hidden;align-self:flex-start}.directions-button:before{content:"";position:absolute;top:0;left:0;width:0;height:100%;background-color:var(--swatch--red-hover, #b71c1c);transition:width .45s cubic-bezier(.31,.75,.22,1);z-index:-1}.directions-button:hover{background-color:var(--swatch--red-hover, #b71c1c);border-color:var(--swatch--red-hover, #b71c1c);transform:translateY(-2px);box-shadow:0 8px 20px #d32f2f4d}.directions-button:hover:before{width:100%}.location-map{position:relative;width:100%;min-height:500px;border:1px solid rgba(0,0,0,.06);overflow:hidden;box-shadow:0 4px 20px #00000014}.location-map iframe{width:100%;height:100%;min-height:500px;border:none}@media(max-width:1024px){.location-container{padding:6rem 2rem 4rem}.location-title{font-size:3.5rem}.location-content{gap:3rem}}@media(max-width:768px){.location-container{padding:5rem 1.5rem 3rem}.location-title{font-size:2.8rem;margin-bottom:3rem}.location-content{grid-template-columns:1fr;gap:3rem}.location-details h2{font-size:1.3rem;padding-left:.75rem;border-left-width:3px}.location-details p{font-size:1rem}.location-map,.location-map iframe{min-height:400px}.directions-button{width:100%;text-align:center}}@media(max-width:480px){.location-container{padding:4rem 1.25rem 2.5rem}.location-title{font-size:2.2rem}.location-details{gap:1.5rem}.location-details h2{font-size:1.2rem}.location-details p{font-size:.95rem}.location-map,.location-map iframe{min-height:350px}}.contact-container{padding:8rem 3rem 6rem;max-width:700px;margin:0 auto;margin-top:100px!important;background-color:var(--swatch--light, #fff);text-align:center}.contact-title{font-size:4.5rem;font-weight:700;letter-spacing:-.02em;text-transform:uppercase;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;margin-bottom:1.5rem;position:relative;padding-bottom:2rem;animation:fadeInTitle .8s cubic-bezier(.19,1,.22,1)}.contact-title:after{content:"";position:absolute;bottom:0;left:50%;transform:translate(-50%);width:120px;height:4px;background-color:var(--swatch--red, #d32f2f)}.contact-subtitle{font-size:1.15rem;font-weight:300;line-height:1.6;color:#000000b3;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;letter-spacing:.01em;margin-bottom:2rem;animation:fadeInUp .8s cubic-bezier(.19,1,.22,1) .1s forwards;opacity:0;animation-fill-mode:forwards}.contact-info{margin-bottom:3rem;animation:fadeInUp .8s cubic-bezier(.19,1,.22,1) .15s forwards;opacity:0;animation-fill-mode:forwards}.phone-link{display:inline-flex;align-items:center;gap:.5rem;padding:1rem 2rem;background-color:var(--swatch--light, #fff);border:2px solid var(--swatch--red, #d32f2f);color:var(--swatch--red, #d32f2f);text-decoration:none;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;font-weight:400;font-size:1.1rem;letter-spacing:.02em;transition:all .45s cubic-bezier(.31,.75,.22,1)}.phone-link:hover{background-color:var(--swatch--red, #d32f2f);color:var(--swatch--light, #fff);transform:translateY(-2px);box-shadow:0 8px 20px #d32f2f4d}.phone-icon{font-size:1.2rem;line-height:1}.phone-number{font-weight:500}.contact-form{display:flex;flex-direction:column;gap:2rem;text-align:left;animation:fadeInUp .8s cubic-bezier(.19,1,.22,1) .2s forwards;opacity:0;animation-fill-mode:forwards}.form-group{display:flex;flex-direction:column;position:relative}.form-group label{margin-bottom:.75rem;font-size:.85rem;font-weight:600;letter-spacing:.05em;text-transform:uppercase;color:var(--swatch--black, #000);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif}.form-group input,.form-group textarea{padding:1rem 1.25rem;border:2px solid rgba(0,0,0,.15);border-radius:0;font-size:1rem;font-weight:300;font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;color:var(--swatch--black, #000);background-color:var(--swatch--light, #fff);transition:all .45s cubic-bezier(.31,.75,.22,1)}.form-group input::placeholder,.form-group textarea::placeholder{color:#0006}.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--swatch--red, #d32f2f);box-shadow:0 4px 12px #d32f2f26;transform:translateY(-2px)}.form-group textarea{resize:vertical;min-height:150px}.submit-button{padding:1.1rem 2.5rem;font-size:.95rem;font-weight:400;letter-spacing:.05em;text-transform:uppercase;color:var(--swatch--light, #fff);background-color:var(--swatch--red, #d32f2f);border:2px solid var(--swatch--red, #d32f2f);border-radius:0;cursor:pointer;transition:all .45s cubic-bezier(.31,.75,.22,1);font-family:Helvetica Neue,Arial,Segoe UI,sans-serif;position:relative;overflow:hidden;margin-top:1rem}.submit-button:before{content:"";position:absolute;top:0;left:0;width:0;height:100%;background-color:var(--swatch--red-hover, #b71c1c);transition:width .45s cubic-bezier(.31,.75,.22,1);z-index:-1}.submit-button:hover{background-color:var(--swatch--red-hover, #b71c1c);border-color:var(--swatch--red-hover, #b71c1c);transform:translateY(-2px);box-shadow:0 8px 20px #d32f2f4d}.submit-button:hover:before{width:100%}.submit-button:active{transform:translateY(0);box-shadow:0 4px 10px #d32f2f33}@keyframes fadeInTitle{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@media(max-width:1024px){.contact-container{padding:6rem 2rem 4rem}.contact-title{font-size:3.5rem}}@media(max-width:768px){.contact-container{padding:5rem 1.5rem 3rem}.contact-title{font-size:2.8rem;margin-bottom:1.25rem}.contact-subtitle{font-size:1rem;margin-bottom:2.5rem}.contact-form{gap:1.75rem}.form-group input,.form-group textarea{padding:.9rem 1rem;font-size:.95rem}.submit-button{width:100%}}@media(max-width:480px){.contact-container{padding:4rem 1.25rem 2.5rem}.contact-title{font-size:2.2rem}.contact-subtitle{font-size:.95rem}.contact-form{gap:1.5rem}.form-group label{font-size:.8rem}.form-group input,.form-group textarea{padding:.85rem;font-size:.9rem}.form-group textarea{min-height:120px}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fade-in-500ms{animation:fadeIn .5s ease-in-out}.fade-in-1s{animation:fadeIn 1s ease-in-out}.fade-in-2s{animation:fadeIn 2s ease-in-out}.fade-in-3s{animation:fadeIn 3s ease-in-out}.fade-in-4s{animation:fadeIn 4s ease-in-out}.fade-in-5s{animation:fadeIn 5s ease-in-out}.fade-in-6s{animation:fadeIn 6s ease-in-out}.fade-out-500ms{animation:fadeOut .5s ease-in-out}.fade-out-1s{animation:fadeOut 1s ease-in-out}.fade-out-2s{animation:fadeOut 2s ease-in-out}.fade-out-3s{animation:fadeOut 3s ease-in-out}.fade-out-4s{animation:fadeOut 4s ease-in-out}.fade-out-5s{animation:fadeOut 5s ease-in-out}.fade-out-6s{animation:fadeOut 6s ease-in-out}@keyframes slideInFromRight{0%{transform:translate(100%);opacity:0}to{transform:translate(0);opacity:1}}@keyframes slideOutToLeft{0%{transform:translate(0);opacity:1}to{transform:translate(-100%);opacity:0}}@keyframes slideInFromLeft{0%{transform:translate(-100%);opacity:0}to{transform:translate(0);opacity:1}}@keyframes slideOutToRight{0%{transform:translate(0);opacity:1}to{transform:translate(100%);opacity:0}}.slide-right{animation:slideInFromRight 1s ease-in-out}.slide-left{animation:slideOutToLeft 1s ease-in-out}.slide-in-left{animation:slideInFromLeft 1s ease-in-out}.slide-out-right{animation:slideOutToRight 1s ease-in-out}.bg-black{background-color:#000}.bg-white{background-color:#fff}.bg-blue{background-color:#00f}.bg-orange{background-color:#f0491b}.bg-red{background-color:red}.bg-green{background-color:#269640}.bg-purple{background-color:#4527f3}.bg-light{background-color:#f6f8fa}.bg-dark{background-color:#1c1e1f}.bg-dark2{background-color:#020411}.bg-dark3{background-color:#161f2c}.bg-dark4{background-color:#10151d}.bg-dark5{background-color:#464d51}.bg-dark6{background-color:#8a94a0}.bg-dark7{background-color:#97999b}.bg-dark8{background-color:#141517}.bg-superdark{background-color:#050706}.bg-light-blue{background-color:#17a3e9}.bg-light-gray{background-color:#f8f8ff}.bg-blue-purple{background-color:#3311f5}.bg-emerald{background-color:#096}.bg-emerald-trans{background-color:#00c7551a}.bg-blue-trans{background-color:#025ace40}.block-blue{background-color:#00f}.block-red{background-color:red}.block-yellow{background-color:#ff0}.block-green{background-color:green}.block-purple{background-color:purple}.glass{background:#00000029;backdrop-filter:blur(5px);-webkit-backdrop-filter:blur(5px)}.body{box-sizing:border-box;padding:0;margin:0;max-width:100%;width:100%;overflow-x:hidden}.main{max-width:1400px;margin:0 auto;min-height:90vh;overflow-x:hidden;overflow:visible}.main::-webkit-scrollbar{display:none}p,h1,h2,h3,h4,h5,h6{padding:0;margin:0}.board{display:grid;gap:10px;--row: 8px;grid-auto-rows:auto;grid-auto-flow:dense;--cols: 1;grid-template-columns:repeat(var(--cols),minmax(0,1fr));min-width:100%}.board>*{grid-column:1 / -1;min-width:0}@media(min-width:400px){.board{--cols: 1}.board .col1{grid-column:span 1}}@media(min-width:500px){.board{--cols: 2}.board .col2{grid-column:span 2}}@media(min-width:600px){.board{--cols: 2}.board .col2{grid-column:span 2}}@media(min-width:700px){.board{--cols: 3}.board .col3{grid-column:span 3}}@media(min-width:800px){.board{--cols: 3}.board .col3{grid-column:span 3}}@media(min-width:900px){.board{--cols: 4}.board .col4{grid-column:span 4}}@media(min-width:1000px){.board{--cols: 4}.board .col4{grid-column:span 4}}@media(min-width:1100px){.board{--cols: 5}.board .col5{grid-column:span 5}}@media(min-width:1200px){.board{--cols: 5}.board .col5{grid-column:span 5}}@media(min-width:1300px){.board{--cols: 5}.board .col5{grid-column:span 5}}@media(min-width:1400px){.board{--cols: 6}.board .col6{grid-column:span 6}}.row1{grid-row:span 12}.row2{grid-row:span 24}.row3{grid-row:span 36}.row4{grid-row:span 48}.row5{grid-row:span 60}.row6{grid-row:span 72}.row7{grid-row:span 84}.row8{grid-row:span 96}.border-1-black{border:1px solid black}.border-2-black{border:2px solid black}.border-3-black{border:3px solid black}.border-4-black{border:4px solid black}.border-5-black{border:5px solid black}.border-6-black{border:6px solid black}.border-b-1-black{border-bottom:1px solid black}.border-b-2-black{border-bottom:2px solid black}.border-b-3-black{border-bottom:3px solid black}.border-b-4-black{border-bottom:4px solid black}.border-b-5-black{border-bottom:5px solid black}.border-b-6-black{border-bottom:6px solid black}.border-t-1-black{border-top:1px solid black}.border-t-2-black{border-top:2px solid black}.border-t-3-black{border-top:3px solid black}.border-t-4-black{border-top:4px solid black}.border-t-5-black{border-top:5px solid black}.border-t-6-black{border-top:6px solid black}.border-l-1-black{border-left:1px solid black}.border-l-2-black{border-left:2px solid black}.border-l-3-black{border-left:3px solid black}.border-l-4-black{border-left:4px solid black}.border-l-5-black{border-left:5px solid black}.border-l-6-black{border-left:6px solid black}.border-r-1-black{border-right:1px solid black}.border-r-2-black{border-right:2px solid black}.border-r-3-black{border-right:3px solid black}.border-r-4-black{border-right:4px solid black}.border-r-5-black{border-right:5px solid black}.border-r-6-black{border-right:6px solid black}.border-v-1-black{border-top:1px solid black;border-bottom:1px solid black}.border-v-2-black{border-top:2px solid black;border-bottom:2px solid black}.border-v-3-black{border-top:3px solid black;border-bottom:3px solid black}.border-v-4-black{border-top:4px solid black;border-bottom:4px solid black}.border-v-5-black{border-top:5px solid black;border-bottom:5px solid black}.border-v-6-black{border-top:6px solid black;border-bottom:6px solid black}.border-h-1-black{border-left:1px solid black;border-right:1px solid black}.border-h-2-black{border-left:2px solid black;border-right:2px solid black}.border-h-3-black{border-left:3px solid black;border-right:3px solid black}.border-h-4-black{border-left:4px solid black;border-right:4px solid black}.border-h-5-black{border-left:5px solid black;border-right:5px solid black}.border-h-6-black{border-left:6px solid black;border-right:6px solid black}.border-1-white{border:1px solid white}.border-2-white{border:2px solid white}.border-3-white{border:3px solid white}.border-4-white{border:4px solid white}.border-5-white{border:5px solid white}.border-6-white{border:6px solid white}.border-b-1-white{border-bottom:1px solid white}.border-b-2-white{border-bottom:2px solid white}.border-b-3-white{border-bottom:3px solid white}.border-b-4-white{border-bottom:4px solid white}.border-b-5-white{border-bottom:5px solid white}.border-b-6-white{border-bottom:6px solid white}.border-t-1-white{border-top:1px solid white}.border-t-2-white{border-top:2px solid white}.border-t-3-white{border-top:3px solid white}.border-t-4-white{border-top:4px solid white}.border-t-5-white{border-top:5px solid white}.border-t-6-white{border-top:6px solid white}.border-l-1-white{border-left:1px solid white}.border-l-2-white{border-left:2px solid white}.border-l-3-white{border-left:3px solid white}.border-l-4-white{border-left:4px solid white}.border-l-5-white{border-left:5px solid white}.border-l-6-white{border-left:6px solid white}.border-r-1-white{border-right:1px solid white}.border-r-2-white{border-right:2px solid white}.border-r-3-white{border-right:3px solid white}.border-r-4-white{border-right:4px solid white}.border-r-5-white{border-right:5px solid white}.border-r-6-white{border-right:6px solid white}.border-v-1-white{border-top:1px solid white;border-bottom:1px solid white}.border-v-2-white{border-top:2px solid white;border-bottom:2px solid white}.border-v-3-white{border-top:3px solid white;border-bottom:3px solid white}.border-v-4-white{border-top:4px solid white;border-bottom:4px solid white}.border-v-5-white{border-top:5px solid white;border-bottom:5px solid white}.border-v-6-white{border-top:6px solid white;border-bottom:6px solid white}.border-h-1-white{border-left:1px solid white;border-right:1px solid white}.border-h-2-white{border-left:2px solid white;border-right:2px solid white}.border-h-3-white{border-left:3px solid white;border-right:3px solid white}.border-h-4-white{border-left:4px solid white;border-right:4px solid white}.border-h-5-white{border-left:5px solid white;border-right:5px solid white}.border-h-6-white{border-left:6px solid white;border-right:6px solid white}.border-1-gray{border:1px solid gray}.border-2-gray{border:2px solid gray}.border-3-gray{border:3px solid gray}.border-4-gray{border:4px solid gray}.border-5-gray{border:5px solid gray}.border-6-gray{border:6px solid gray}.border-b-1-gray{border-bottom:1px solid gray}.border-b-2-gray{border-bottom:2px solid gray}.border-b-3-gray{border-bottom:3px solid gray}.border-b-4-gray{border-bottom:4px solid gray}.border-b-5-gray{border-bottom:5px solid gray}.border-b-6-gray{border-bottom:6px solid gray}.border-t-1-gray{border-top:1px solid gray}.border-t-2-gray{border-top:2px solid gray}.border-t-3-gray{border-top:3px solid gray}.border-t-4-gray{border-top:4px solid gray}.border-t-5-gray{border-top:5px solid gray}.border-t-6-gray{border-top:6px solid gray}.border-l-1-gray{border-left:1px solid gray}.border-l-2-gray{border-left:2px solid gray}.border-l-3-gray{border-left:3px solid gray}.border-l-4-gray{border-left:4px solid gray}.border-l-5-gray{border-left:5px solid gray}.border-l-6-gray{border-left:6px solid gray}.border-r-1-gray{border-right:1px solid gray}.border-r-2-gray{border-right:2px solid gray}.border-r-3-gray{border-right:3px solid gray}.border-r-4-gray{border-right:4px solid gray}.border-r-5-gray{border-right:5px solid gray}.border-r-6-gray{border-right:6px solid gray}.border-v-1-gray{border-top:1px solid gray;border-bottom:1px solid gray}.border-v-2-gray{border-top:2px solid gray;border-bottom:2px solid gray}.border-v-3-gray{border-top:3px solid gray;border-bottom:3px solid gray}.border-v-4-gray{border-top:4px solid gray;border-bottom:4px solid gray}.border-v-5-gray{border-top:5px solid gray;border-bottom:5px solid gray}.border-v-6-gray{border-top:6px solid gray;border-bottom:6px solid gray}.border-h-1-gray{border-left:1px solid gray;border-right:1px solid gray}.border-h-2-gray{border-left:2px solid gray;border-right:2px solid gray}.border-h-3-gray{border-left:3px solid gray;border-right:3px solid gray}.border-h-4-gray{border-left:4px solid gray;border-right:4px solid gray}.border-h-5-gray{border-left:5px solid gray;border-right:5px solid gray}.border-h-6-gray{border-left:6px solid gray;border-right:6px solid gray}.border-1-lightgray{border:1px solid #161C1F}.border-2-lightgray{border:2px solid #161C1F}.border-3-lightgray{border:3px solid #161C1F}.border-4-lightgray{border:4px solid #161C1F}.border-5-lightgray{border:5px solid #161C1F}.border-6-lightgray{border:6px solid #161C1F}.border-b-1-lightgray{border-bottom:1px solid #161C1F}.border-b-2-lightgray{border-bottom:2px solid #161C1F}.border-b-3-lightgray{border-bottom:3px solid #161C1F}.border-b-4-lightgray{border-bottom:4px solid #161C1F}.border-b-5-lightgray{border-bottom:5px solid #161C1F}.border-b-6-lightgray{border-bottom:6px solid #161C1F}.border-t-1-lightgray{border-top:1px solid #161C1F}.border-t-2-lightgray{border-top:2px solid #161C1F}.border-t-3-lightgray{border-top:3px solid #161C1F}.border-t-4-lightgray{border-top:4px solid #161C1F}.border-t-5-lightgray{border-top:5px solid #161C1F}.border-t-6-lightgray{border-top:6px solid #161C1F}.border-l-1-lightgray{border-left:1px solid #161C1F}.border-l-2-lightgray{border-left:2px solid #161C1F}.border-l-3-lightgray{border-left:3px solid #161C1F}.border-l-4-lightgray{border-left:4px solid #161C1F}.border-l-5-lightgray{border-left:5px solid #161C1F}.border-l-6-lightgray{border-left:6px solid #161C1F}.border-r-1-lightgray{border-right:1px solid #161C1F}.border-r-2-lightgray{border-right:2px solid #161C1F}.border-r-3-lightgray{border-right:3px solid #161C1F}.border-r-4-lightgray{border-right:4px solid #161C1F}.border-r-5-lightgray{border-right:5px solid #161C1F}.border-r-6-lightgray{border-right:6px solid #161C1F}.border-v-1-lightgray{border-top:1px solid #161C1F;border-bottom:1px solid #161C1F}.border-v-2-lightgray{border-top:2px solid #161C1F;border-bottom:2px solid #161C1F}.border-v-3-lightgray{border-top:3px solid #161C1F;border-bottom:3px solid #161C1F}.border-v-4-lightgray{border-top:4px solid #161C1F;border-bottom:4px solid #161C1F}.border-v-5-lightgray{border-top:5px solid #161C1F;border-bottom:5px solid #161C1F}.border-v-6-lightgray{border-top:6px solid #161C1F;border-bottom:6px solid #161C1F}.border-h-1-lightgray{border-left:1px solid #161C1F;border-right:1px solid #161C1F}.border-h-2-lightgray{border-left:2px solid #161C1F;border-right:2px solid #161C1F}.border-h-3-lightgray{border-left:3px solid #161C1F;border-right:3px solid #161C1F}.border-h-4-lightgray{border-left:4px solid #161C1F;border-right:4px solid #161C1F}.border-h-5-lightgray{border-left:5px solid #161C1F;border-right:5px solid #161C1F}.border-h-6-lightgray{border-left:6px solid #161C1F;border-right:6px solid #161C1F}.no-border{border:0}.no-outline{outline:none}.border-1-blue{border:1px solid #0472FE}.border-2-blue{border:2px solid #0472FE}.border-3-blue{border:3px solid #0472FE}.border-4-blue{border:4px solid #0472FE}.border-5-blue{border:5px solid #0472FE}.border-6-blue{border:6px solid #0472FE}.border-b-1-blue{border-bottom:1px solid #0472FE}.border-b-2-blue{border-bottom:2px solid #0472FE}.border-b-3-blue{border-bottom:3px solid #0472FE}.border-b-4-blue{border-bottom:4px solid #0472FE}.border-b-5-blue{border-bottom:5px solid #0472FE}.border-b-6-blue{border-bottom:6px solid #0472FE}.border-t-1-blue{border-top:1px solid #0472FE}.border-t-2-blue{border-top:2px solid #0472FE}.border-t-3-blue{border-top:3px solid #0472FE}.border-t-4-blue{border-top:4px solid #0472FE}.border-t-5-blue{border-top:5px solid #0472FE}.border-t-6-blue{border-top:6px solid #0472FE}.border-l-1-blue{border-left:1px solid #0472FE}.border-l-2-blue{border-left:2px solid #0472FE}.border-l-3-blue{border-left:3px solid #0472FE}.border-l-4-blue{border-left:4px solid #0472FE}.border-l-5-blue{border-left:5px solid #0472FE}.border-l-6-blue{border-left:6px solid #0472FE}.border-r-1-blue{border-right:1px solid #0472FE}.border-r-2-blue{border-right:2px solid #0472FE}.border-r-3-blue{border-right:3px solid #0472FE}.border-r-4-blue{border-right:4px solid #0472FE}.border-r-5-blue{border-right:5px solid #0472FE}.border-r-6-blue{border-right:6px solid #0472FE}.border-v-1-blue{border-top:1px solid #0472FE;border-bottom:1px solid #0472FE}.border-v-2-blue{border-top:2px solid #0472FE;border-bottom:2px solid #0472FE}.border-v-3-blue{border-top:3px solid #0472FE;border-bottom:3px solid #0472FE}.border-v-4-blue{border-top:4px solid #0472FE;border-bottom:4px solid #0472FE}.border-v-5-blue{border-top:5px solid #0472FE;border-bottom:5px solid #0472FE}.border-v-6-blue{border-top:6px solid #0472FE;border-bottom:6px solid #0472FE}.border-h-1-blue{border-left:1px solid #0472FE;border-right:1px solid #0472FE}.border-h-2-blue{border-left:2px solid #0472FE;border-right:2px solid #0472FE}.border-h-3-blue{border-left:3px solid #0472FE;border-right:3px solid #0472FE}.border-h-4-blue{border-left:4px solid #0472FE;border-right:4px solid #0472FE}.border-h-5-blue{border-left:5px solid #0472FE;border-right:5px solid #0472FE}.border-h-6-blue{border-left:6px solid #0472FE;border-right:6px solid #0472FE}.border-1-emerald{border:1px solid #009966}.border-2-emerald{border:2px solid #009966}.border-3-emerald{border:3px solid #009966}.border-4-emerald{border:4px solid #009966}.border-5-emerald{border:5px solid #009966}.border-6-emerald{border:6px solid #009966}.border-b-1-emerald{border-bottom:1px solid #009966}.border-b-2-emerald{border-bottom:2px solid #009966}.border-b-3-emerald{border-bottom:3px solid #009966}.border-b-4-emerald{border-bottom:4px solid #009966}.border-b-5-emerald{border-bottom:5px solid #009966}.border-b-6-emerald{border-bottom:6px solid #009966}.border-t-1-emerald{border-top:1px solid #009966}.border-t-2-emerald{border-top:2px solid #009966}.border-t-3-emerald{border-top:3px solid #009966}.border-t-4-emerald{border-top:4px solid #009966}.border-t-5-emerald{border-top:5px solid #009966}.border-t-6-emerald{border-top:6px solid #009966}.border-l-1-emerald{border-left:1px solid #009966}.border-l-2-emerald{border-left:2px solid #009966}.border-l-3-emerald{border-left:3px solid #009966}.border-l-4-emerald{border-left:4px solid #009966}.border-l-5-emerald{border-left:5px solid #009966}.border-l-6-emerald{border-left:6px solid #009966}.border-r-1-emerald{border-right:1px solid #009966}.border-r-2-emerald{border-right:2px solid #009966}.border-r-3-emerald{border-right:3px solid #009966}.border-r-4-emerald{border-right:4px solid #009966}.border-r-5-emerald{border-right:5px solid #009966}.border-r-6-emerald{border-right:6px solid #009966}.border-v-1-emerald{border-top:1px solid #009966;border-bottom:1px solid #009966}.border-v-2-emerald{border-top:2px solid #009966;border-bottom:2px solid #009966}.border-v-3-emerald{border-top:3px solid #009966;border-bottom:3px solid #009966}.border-v-4-emerald{border-top:4px solid #009966;border-bottom:4px solid #009966}.border-v-5-emerald{border-top:5px solid #009966;border-bottom:5px solid #009966}.border-v-6-emerald{border-top:6px solid #009966;border-bottom:6px solid #009966}.border-h-1-emerald{border-left:1px solid #009966;border-right:1px solid #009966}.border-h-2-emerald{border-left:2px solid #009966;border-right:2px solid #009966}.border-h-3-emerald{border-left:3px solid #009966;border-right:3px solid #009966}.border-h-4-emerald{border-left:4px solid #009966;border-right:4px solid #009966}.border-h-5-emerald{border-left:5px solid #009966;border-right:5px solid #009966}.border-h-6-emerald{border-left:6px solid #009966;border-right:6px solid #009966}.border-1-orange{border:1px solid #F0491A}.border-2-orange{border:2px solid #F0491A}.border-3-orange{border:3px solid #F0491A}.border-4-orange{border:4px solid #F0491A}.border-5-orange{border:5px solid #F0491A}.border-6-orange{border:6px solid #F0491A}.border-b-1-orange{border-bottom:1px solid #F0491A}.border-b-2-orange{border-bottom:2px solid #F0491A}.border-b-3-orange{border-bottom:3px solid #F0491A}.border-b-4-orange{border-bottom:4px solid #F0491A}.border-b-5-orange{border-bottom:5px solid #F0491A}.border-b-6-orange{border-bottom:6px solid #F0491A}.border-t-1-orange{border-top:1px solid #F0491A}.border-t-2-orange{border-top:2px solid #F0491A}.border-t-3-orange{border-top:3px solid #F0491A}.border-t-4-orange{border-top:4px solid #F0491A}.border-t-5-orange{border-top:5px solid #F0491A}.border-t-6-orange{border-top:6px solid #F0491A}.border-l-1-orange{border-left:1px solid #F0491A}.border-l-2-orange{border-left:2px solid #F0491A}.border-l-3-orange{border-left:3px solid #F0491A}.border-l-4-orange{border-left:4px solid #F0491A}.border-l-5-orange{border-left:5px solid #F0491A}.border-l-6-orange{border-left:6px solid #F0491A}.border-r-1-orange{border-right:1px solid #F0491A}.border-r-2-orange{border-right:2px solid #F0491A}.border-r-3-orange{border-right:3px solid #F0491A}.border-r-4-orange{border-right:4px solid #F0491A}.border-r-5-orange{border-right:5px solid #F0491A}.border-r-6-orange{border-right:6px solid #F0491A}.border-v-1-orange{border-top:1px solid #F0491A;border-bottom:1px solid #F0491A}.border-v-2-orange{border-top:2px solid #F0491A;border-bottom:2px solid #F0491A}.border-v-3-orange{border-top:3px solid #F0491A;border-bottom:3px solid #F0491A}.border-v-4-orange{border-top:4px solid #F0491A;border-bottom:4px solid #F0491A}.border-v-5-orange{border-top:5px solid #F0491A;border-bottom:5px solid #F0491A}.border-v-6-orange{border-top:6px solid #F0491A;border-bottom:6px solid #F0491A}.border-h-1-orange{border-left:1px solid #F0491A;border-right:1px solid #F0491A}.border-h-2-orange{border-left:2px solid #F0491A;border-right:2px solid #F0491A}.border-h-3-orange{border-left:3px solid #F0491A;border-right:3px solid #F0491A}.border-h-4-orange{border-left:4px solid #F0491A;border-right:4px solid #F0491A}.border-h-5-orange{border-left:5px solid #F0491A;border-right:5px solid #F0491A}.border-h-6-orange{border-left:6px solid #F0491A;border-right:6px solid #F0491A}.black{color:#000}.white{color:#fff}.gray{color:gray}.light-gray{color:#f8f8ff}.red{color:red}.blue{color:#2d84fe}.light-blue{color:#17a3e9}.orange{color:#f0491a}.purple{color:#8325ff}.green{color:green}.blue-purple{color:#3311f5}.emerald{color:#096}.roboto{font-family:Roboto,serif}.host{font-family:Host Grotesk,sans-serif}.open{font-family:Open Sans,sans-serif}.merri{font-family:Merriweather,serif}.garamond{font-family:EB Garamond,serif}.dmserif{font-family:"DM Serif Text",serif}.poppins{font-family:Poppins,sans-serif}.space{font-family:Space Mono,serif}.poiret{font-family:Poiret One,sans-serif}.radius-sm{border-radius:6px}.radius{border-radius:12px}.radius-lg{border-radius:20px}.full-radius{border-radius:100px}.radius-tl-sm{border-top-left-radius:6px}.radius-tl{border-top-left-radius:12px}.radius-tl-lg{border-top-left-radius:20px}.radius-tr-sm{border-top-right-radius:6px}.radius-tr{border-top-right-radius:12px}.radius-tr-lg{border-top-right-radius:20px}.radius-bl-sm{border-bottom-left-radius:6px}.radius-bl{border-bottom-left-radius:12px}.radius-bl-lg{border-bottom-left-radius:20px}.radius-br-sm{border-bottom-right-radius:6px}.radius-br{border-bottom-right-radius:12px}.radius-br-lg{border-bottom-right-radius:20px}.hover:hover{opacity:.8}.fill{object-fit:fill}.cover{object-fit:cover}.contain{object-fit:contain}.block{display:block}.fixed{position:fixed}.inline{display:inline}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.static{position:static}.top{top:0}.bottom{bottom:0}.left{left:0}.right{right:0}.box{box-sizing:border-box}.separate-h{display:flex;flex-direction:row;justify-content:space-between}.separate-v{display:flex;flex-direction:column;justify-content:space-between}.horizontal-center{margin:0 auto}.vertical-center{align-items:center}.vertical-bottom{align-items:end}.fit-width{width:fit-content}.fit-height{height:fit-content}.full-width{width:100%}.full-height{height:100%}.height-100{min-height:100vh}.height-0{height:0}.width-100{min-width:100vw}.width-90{width:90vw}.width-80{width:80vw}.width-70{width:70vw}.width-60{width:60vw}.width-50{width:50vw}.width-40{width:40vw}.width-30{width:30vw}.width-20{width:20vw}.width-10{width:10vw}.width-0{width:0}.space-between{justify-content:space-between}.space-around{justify-content:space-around}.space-evenly{justify-content:space-evenly}.flex-row{display:flex;flex-direction:row}.flex-column{display:flex;flex-direction:column}.grid-1{display:grid;grid-template-columns:1fr}.grid-2{display:grid;grid-template-columns:1fr 1fr}.grid-3{display:grid;grid-template-columns:repeat(3,1fr)}.grid-4{display:grid;grid-template-columns:repeat(4,1fr)}.grid-5{display:grid;grid-template-columns:repeat(5,1fr)}.grid-6{display:grid;grid-template-columns:repeat(6,1fr)}.gap-sm{gap:.5em}.gap{gap:1em}.gap-md{gap:1.5em}.gap-lg{gap:2em}.gap-xl{gap:2.5em}.scroll-x{overflow-x:scroll;scrollbar-width:none;-ms-overflow-style:none}.scroll-x::-webkit-scrollbar{display:none}.scroll-y{overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}.scroll-y::-webkit-scrollbar{display:none}.expand-h{width:100%;box-sizing:border-box}.expand-v{height:100%;box-sizing:border-box}.no-m{margin:0}.m-sm{margin:.5em}.m{margin:1em}.m-md{margin:1.5em}.m-lg{margin:2em}.m-v{margin-top:1em;margin-bottom:1em}.m-h{margin-left:1em;margin-right:1em}.pointer{cursor:pointer}.no-p{padding:0}.p-sm{padding:.5em}.p{padding:1em}.p-md{padding:1.5em}.p-lg{padding:2em}.p-v{padding-top:1em;padding-bottom:1em}.p-h{padding-left:1em;padding-right:1em}.row{display:grid;grid-template-columns:1fr;width:100%;height:100%}.row>div{width:100%}@media(min-width:680px){.row{grid-template-columns:1fr}.sm0{display:none}}@media(min-width:800px){.row{grid-template-columns:1fr 1fr}.md0{display:none}.md1{display:block;grid-column:span 1}.md2{display:block;grid-column:span 2}}@media(min-width:1100px){.row{grid-template-columns:repeat(3,1fr)}.lg0{display:none}.lg1{display:block;grid-column:span 1}.lg2{display:block;grid-column:span 2}.lg3{display:block;grid-column:span 3}}@media(min-width:1400px){.row{grid-template-columns:repeat(4,1fr)}.xl0{display:none}.xl1{display:block;grid-column:span 1}.xl2{display:block;grid-column:span 2}.xl3{display:block;grid-column:span 3}.xl4{display:block;grid-column:span 4}}.rotate-5-right{transform:rotate(5deg);display:inline-block}.rotate-10-right{transform:rotate(10deg);display:inline-block}.rotate-15-right{transform:rotate(15deg);display:inline-block}.rotate-20-right{transform:rotate(20deg);display:inline-block}.rotate-25-right{transform:rotate(25deg);display:inline-block}.rotate-30-right{transform:rotate(30deg);display:inline-block}.rotate-35-right{transform:rotate(35deg);display:inline-block}.rotate-40-right{transform:rotate(40deg);display:inline-block}.rotate-45-right{transform:rotate(45deg);display:inline-block}.rotate-5-left{transform:rotate(-5deg);display:inline-block}.rotate-10-left{transform:rotate(-10deg);display:inline-block}.rotate-15-left{transform:rotate(-15deg);display:inline-block}.rotate-20-left{transform:rotate(-20deg);display:inline-block}.rotate-25-left{transform:rotate(-25deg);display:inline-block}.rotate-30-left{transform:rotate(-30deg);display:inline-block}.rotate-35-left{transform:rotate(-35deg);display:inline-block}.rotate-40-left{transform:rotate(-40deg);display:inline-block}.rotate-45-left{transform:rotate(-45deg);display:inline-block}.shadow-light{box-shadow:#959da533 0 8px 24px}.height-10{height:10vh}.height-20{height:20vh}.height-30{height:30vh}.height-40{height:40vh}.height-50{height:50vh}.height-60{height:60vh}.height-70{height:70vh}.height-80{height:80vh}.height-90{height:90vh}.height-100{height:100vh}.text-size1{font-size:.5rem}.text-size2{font-size:.6rem}.text-size3{font-size:.7rem}.text-size4{font-size:.8rem}.text-size5{font-size:.9rem}.text-size6{font-size:1rem}.text-size7{font-size:1.1rem}.text-size8{font-size:1.2rem}.text-size9{font-size:1.3rem}.text-size10{font-size:1.4rem}.text-size11{font-size:1.5rem}.text-size12{font-size:1.6rem}.text-size13{font-size:1.7rem}.text-size14{font-size:1.8rem}.text-size15{font-size:1.9rem}.text-size16{font-size:2rem}.text-size17{font-size:2.1rem}.text-size18{font-size:2.2rem}.text-size19{font-size:2.3rem}.text-size20{font-size:2.4rem}.text-size21{font-size:2.5rem}.text-size22{font-size:2.6rem}.text-size23{font-size:2.7rem}.text-size24{font-size:2.8rem}.text-size25{font-size:2.9rem}.text-size26{font-size:3rem}.text-size27{font-size:3.1rem}.text-size28{font-size:3.2rem}.text-size29{font-size:3.3rem}.text-size30{font-size:3.4rem}.text-size31{font-size:3.5rem}.text-size32{font-size:3.6rem}.text-size33{font-size:3.7rem}.text-size34{font-size:3.8rem}.text-size35{font-size:3.9rem}.text-size36{font-size:4rem}.text-size37{font-size:4.1rem}.text-size38{font-size:4.2rem}.text-size39{font-size:4.3rem}.text-size40{font-size:4.4rem}.text-size41{font-size:4.5rem}.text-size42{font-size:4.6rem}.text-size43{font-size:4.7rem}.text-size44{font-size:4.8rem}.text-size45{font-size:4.9rem}.text-size46{font-size:5rem}.text-size47{font-size:5.1rem}.text-size48{font-size:5.2rem}.text-size49{font-size:5.3rem}.text-size50{font-size:5.4rem}.text-size51{font-size:5.5rem}.text-size52{font-size:5.6rem}.text-size53{font-size:5.7rem}.text-size54{font-size:5.8rem}.text-size55{font-size:5.9rem}.text-size56{font-size:6rem}.text-size57{font-size:6.1rem}.text-size58{font-size:6.2rem}.text-size59{font-size:6.3rem}.text-size60{font-size:6.4rem}.upper{text-transform:uppercase}.lower{text-transform:lowercase}.capitalize{text-transform:capitalize}.underline{text-decoration:underline}.line-sm{line-height:1em}.text-center{text-align:center}.text-right{text-align:end}.text-left{text-align:start}.spacing-sm{letter-spacing:-1px}.spacing-xs{letter-spacing:-2px}.spacing-xxs{letter-spacing:-3px}.extra-thin{font-weight:100}.thin{font-weight:300}.normal{font-weight:500}.bold{font-weight:600}.extra-bold{font-weight:800}.super-bold{font-weight:900}.force-wrap{overflow-wrap:break-word}.no-wrap{white-space:nowrap}
