/************************************
	Base Style
************************************/

html { min-height: 100%; height: 100%; overflow-x: hidden; }
body { font-family: 'Rethink Sans', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0; padding: 0; overflow-x: hidden; background-color: var(--background); }
.page-body { display: flex; flex-direction: column; min-height: 100%; }
.page-flex { flex: 1; overflow-x: hidden; margin-top: var(--nav-height); }
.no-text-highlight { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
img { display: block; }

/*****************************
  Colours
*****************************/

:root {
  --brand: #5f4cfe;
  --brand-dark: #004037;
  --white: #ffffff;
  --black: #000000;
  --background: #020917;
  --background-02: #020917;
  --background-03: #020917;
  --border: #2b3039;
  --border-02: #363636;
  --text-default: #c9ced8;
  --text-sub: #8b99ad;
  --text-sub-01: #b1b1b1;
  --nav-height: 90px;
  --box-shadow-main: 0 0.5rem 1rem 0 rgba(0,0,0,0.07);
  --contact-spinner-border: rgba(255,255,255,.35);
}

/*****************************
	Typography
*****************************/

h1,h2,h3,h4,h5,h6, p, li, label, input, textarea, select { color: var(--text-default); margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', sans-serif; }
h1 { font-size: 4rem; line-height: 1.2; font-weight: 800; }
h2 { font-size: 2.3rem; line-height: 1.3; }
h3 { font-size: 1.5rem; line-height: 1.4; }
p, a { font-size: 1.02rem; line-height: 1.7; letter-spacing: normal; }
p { color: var(--text-sub); }
a { text-decoration: none; cursor: pointer; transition: 0.4s; color: var(--text-sub); }
li, button, label, input, textarea, select, option { font-size: 0.74rem; }
ul, ol { margin: 0; }
ul li { font-size: .98rem; line-height: 1.8; letter-spacing: normal; color: var(--text-sub); padding: 0 0 10px; }
ol li { font-size: .98rem; line-height: 1.8; letter-spacing: normal; color: var(--text-sub); padding: 0 0 10px; }
.header-main { font-size: 2.4rem; line-height: 1.3; }

@media screen and (max-width: 1050px) {
h2 { font-size: 2.1rem; } }

@media screen and (max-width: 950px) {
h1 { font-size: 3.4rem; }
.header-main { font-size: 2.2rem; } }

@media screen and (max-width: 700px) {
h1 { font-size: 3rem; } }

@media screen and (max-width: 560px) {
h2 { font-size: 2rem; } }

@media screen and (max-width: 350px) {
h1 { font-size: 2.4rem; } }

/************************************
	Containers
************************************/

.page-container-lg { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.page-container-md { max-width: 940px; margin: 0 auto; padding: 0 20px; }
.page-container-mdx { max-width: 750px; margin: 0 auto; padding: 0 20px; }
.page-container-sml { max-width: 640px; margin: auto; padding: 0 20px; }
.border { border-top: solid 1px var(--border); }
.padding-lg { padding-top: 80px; }

/*****************************
  Buttons
*****************************/

.btn-base { display: inline-block; border-radius: 4px; font-size: 1rem; white-space: nowrap; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; padding: 15px 17px; transition: all 0.5s; letter-spacing: .5px; border-bottom: none !important; font-weight: 800 !important; }
.main-btn-base { background-color: var(--brand); }
.main-btn-base p { color: var(--white) !important; font-size: 1rem !important; padding: 0 !important; line-height: 1 !important; }

/*****************************
  Navigation
*****************************/

nav { background-color: var(--background); border-bottom: solid 1px var(--border); position: fixed; width: 100%; z-index: 10000000; }
.nav-large { width: 100%; }
.nav-container-outer { height: 100%; }
.nav-container { height: var(--nav-height); display: flex; flex-direction: row; align-items: center; justify-content: space-between; }
.nav-logo img { height: 17px; }
.nav-items { margin: 0 0 0 auto; height: 100%; display: flex; flex-direction: row; align-items: center; }
.nav-item { margin: 0 15px; }
.nav-item a { color: var(--text-sub) !important; white-space: nowrap; font-size: .9rem !important; border-bottom: none; transition: 0.5s; font-weight: bold; }
.nav-item:hover a { color: var(--text-default) !important; }
.nav-btn-base { padding: 12px !important; }
.nav-btn-base p { font-size: .93rem !important; }
.nav-right { margin-left: 20px; }

@media screen and (max-width: 900px) {
.nav-logo { height: 14px; }
.nav-item { display: none; } }

/*****************************
  Footer
*****************************/

footer { background-color: var(--background); padding: 100px 0 80px; }
.footer-container { padding-top: 80px; display: flex; justify-content: center; flex-direction: column; }
.footer-top-container { display: flex; flex-direction: column; align-items: center; }
.footer-links a { padding: 0 10px; color: var(--text-sub); transition: 0.4s; font-weight: 600; font-size: 0.88rem !important; }
.footer-links a:hover { color: var(--text-default); }
.footer-about { border-top: solid 1px var(--border); margin: 60px 0 0; padding: 50px 0 0; max-width: 350px; text-align: center; }
.footer-about p { opacity: 0.7; color: var(--text-sub); font-size: .8rem !important; }
.footer-about a { color: var(--text-sub); text-decoration: underline; font-size: .8rem !important; }

@media screen and (max-width: 600px) {
footer { padding: 50px 0; }
.footer-container { padding-top: 50px; }
.footer-top-container { align-items: flex-start; }
.footer-links { display: flex; flex-direction: column; }
.footer-links a { padding: 10px 0; }
.footer-about { margin: 30px 0 0; padding: 30px 0 0; text-align: left; } }

/*****************************
  Error Page
*****************************/

.error-page { text-align: center; max-width: 650px; margin: 180px auto; }
.error-page-text { max-width: 550px; margin: 10px auto 0; }
.error-page a { margin: 20px auto 0; }
.error-page .btn-base { max-width: 200px; }

@media screen and (max-width: 950px) {
.error-page { margin: 140px auto; } }

/*****************************
  Basic Page
*****************************/

.basic-page { max-width: 750px; margin: 0 auto; }
.basic-page h1 { padding-bottom: 15px; }
.basic-page p { padding-bottom: 10px; }
.basic-page-section { margin-top: 20px; }
.basic-page-section h2 { padding-bottom: 10px; }

/*****************************
  Hero
*****************************/

.hero-full-bleed { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); background-color: var(--background); }
.hero { padding: 125px 20px 115px; display: flex; flex-direction: column; align-items: center; }
.hero-text { max-width: 840px; width: 100%; text-align: center; margin: 0 auto; }
.hero-text h1 { font-size: 4rem; line-height: 1.3; padding: 0 0 10px 0; }
.hero-text p { max-width: 605px; margin: 0 auto; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 35px auto 15px; flex-wrap: wrap; }
.hero-btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 4px; padding: 15px 17px; line-height: 1; }
.hero-btn-primary,.hero-btn-secondary { background-color: var(--brand);  }
.hero-proof { max-width: 720px; margin: 45px auto 0; text-align: center; }
.hero-proof-items { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 15px; }
.hero-proof-items span { color: var(--text-default); border: solid 1px var(--border); background-color: var(--background-02); border-radius: 999px; padding: 6px 12px; font-size: .82rem; }

@media screen and (max-width: 1150px) {
.hero { padding: 80px 20px; max-width: 750px; margin: 0 auto; }
.hero-text { width: 100%; text-align: center; }
.hero-text h1 { font-size: 3.9rem; padding: 15px 0 5px; }
.hero-text p { max-width: 500px; margin: 0 auto; } }

@media screen and (max-width: 650px) {
.hero { padding: 60px 20px; }
.hero-text { text-align: left; }
.hero-text h1 { font-size: 2.6rem; }
.hero-text p { margin: 0; }
.hero-actions { justify-content: flex-start; }
.hero-proof { text-align: left; }
.hero-proof-items { justify-content: flex-start; } }

/*****************************
  Social Proof Logos
*****************************/

.social-proof-logos { margin-top: 15px; max-width: 1150px; margin: 0 auto; }
.social-proof-logos-items { max-width: 950px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; margin-top: 10px; }
.social-proof-logos-header p { margin: 0 !important; text-align: center; font-size: .97rem; color: var(--text-sub); }
.social-proof-logos-item { margin: 20px 10px; }
.social-proof-logos-item img { border: 0; max-width: 90px!important; height: auto; }

/*****************************
  Hero 02
*****************************/

.hero-02 { text-align: center; border-bottom: solid 1px var(--border); padding-bottom: 50px; margin-bottom: 50px; }
.booking-hero { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.hero-02 h1 { font-size: 3rem; padding: 0 0 15px !important; }
.hero-02 h2 { font-size: 4rem; line-height: 1.1; padding: 0 0 10px; }
.hero-02 p { max-width: 600px; margin: 0 auto; line-height: 1.7; }
.hero-02-text { text-align: center; max-width: 825px; margin: 0 auto 50px; }
.booking-calendar { width: 100%; max-width: 750px; margin: 0 auto; overflow: hidden; border: solid 1px var(--border); border-radius: 15px; background-color: var(--white); }
.booking-calendar iframe { display: block; border: 0; width: 100%; }

/*****************************
  Feature Bullet List
*****************************/

.feature-bullet-list { max-width: 600px; margin: 50px auto 0; }
.feature-bullet-list h2 { padding: 0 0 20px; font-size: 1.8rem; line-height: 1.5; }
.feature-bullet-list ul { padding: 0 0 0 15px!important; }
.feature-bullet-list ol { padding: 0 0 0 15px!important; }
.feature-bullet-list p { padding-bottom: 15px; }
.feature-bullet-list a { text-decoration: underline; font-weight: bold; }
.feature-bullet-list a:hover { color: var(--white); }

@media screen and (max-width: 650px) {
.feature-bullet-list:first-child { margin-top: 0; } }

/*****************************
  Section Header
*****************************/

.section-header { border-top: solid 1px var(--border); padding-top: 45px; margin-bottom: 50px; text-align: center; }
.section-header h2 { font-size: 1.8rem; line-height: 1.35; }
.insights-section-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; }

/*****************************
  FAQs
*****************************/

.faq-section { margin-top: 70px; padding: 0 0 10px; }
.faq-list { border: solid 1px var(--border); border-radius: 8px; overflow: hidden; background-color: var(--background-02); }
.faq-item { border-bottom: solid 1px var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.15rem; line-height: 1.45; }
.faq-question { width: 100%; appearance: none; border: 0; background: transparent; color: var(--text-default); font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 800; line-height: 1.45; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; }
.faq-question:hover { color: var(--white); }
.faq-question:focus-visible { outline: solid 2px var(--brand); outline-offset: -2px; }
.faq-icon { position: relative; flex: 0 0 12px; width: 12px; height: 12px; }
.faq-icon::before,.faq-icon::after { content: ""; position: absolute; background-color: currentColor; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform .2s ease, opacity .2s ease; }
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-question[aria-expanded="true"] .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { padding: 0 24px 24px; }
.faq-answer p { font-size: 1rem; line-height: 1.75; }

@media screen and (max-width: 650px) {
.faq-section { margin-top: 48px; }
.faq-question { font-size: 1.08rem; padding: 20px; }
.faq-answer { padding: 0 20px 22px; } }

/*****************************
  About Page
*****************************/

.about-page { background-color: var(--background); }
.about-editorial { padding: 50px 20px 0; }
.about-editorial h1 { font-size: 4rem; line-height: 1.05; padding-bottom: 28px; }
.about-editorial h2 { font-size: 2.25rem; line-height: 1.2; padding: 34px 0 16px; }
.about-editorial p { font-size: 1.08rem; line-height: 1.75; padding-bottom: 18px; }
.about-editorial a { color: var(--text-default); text-decoration: underline; font-weight: 700; }

@media screen and (max-width: 950px) {
.about-editorial h1 { font-size: 3.3rem; } }

@media screen and (max-width: 650px) {
.about-editorial h1 { font-size: 2.8rem; }
.about-editorial h2 { font-size: 1.9rem; }
.about-editorial p { font-size: 1rem; } }

/*****************************
  Careers
*****************************/

.careers-jobs-widget { margin-top: 8px; }
.careers-jobs-widget gohire-jobs { display: block; }
.careers-jobs-widget .gohire-job-widget-shell { margin: 0 !important; background-color: var(--background-02) !important; border: solid 1px var(--border) !important; border-radius: 8px !important; overflow: hidden !important; }
.careers-jobs-widget .gohire-job-search-filter { border-bottom: solid 1px var(--border) !important; }
.careers-jobs-widget #gohire-search-text,.careers-jobs-widget .gohire-icon-action,.careers-jobs-widget .gohire-filter-toggle,.careers-jobs-widget .gohire-filter-menu,.careers-jobs-widget .gohire-filter-menu button,.careers-jobs-widget .gohire-job-pagination button { background-color: var(--background) !important; border-color: var(--border) !important; color: var(--text-default) !important; }
.careers-jobs-widget #gohire-search-text::placeholder { color: var(--text-sub) !important; }
.careers-jobs-widget #gohire-search-text:focus,.careers-jobs-widget .gohire-icon-action:focus,.careers-jobs-widget .gohire-filter-toggle:focus { border-color: var(--brand) !important; box-shadow: 0 0 0 3px rgba(95,76,254,.16) !important; }
.careers-jobs-widget .gohire-icon-action:hover,.careers-jobs-widget .gohire-filter-toggle:hover,.careers-jobs-widget .gohire-filter-menu button:hover,.careers-jobs-widget .gohire-filter-menu button.gohire-filter-selected,.careers-jobs-widget .gohire-job-pagination button:hover:not(:disabled) { background-color: var(--background-03) !important; color: var(--text-default) !important; }
.careers-jobs-widget .gohire-job-list { box-sizing: border-box; width: 100% !important; margin: 0 !important; background-color: var(--background-02) !important; border: solid 1px var(--border) !important; border-radius: 8px !important; box-shadow: none !important; overflow: hidden; }
.careers-jobs-widget .gohire-job-widget-shell > .gohire-job-list,.careers-jobs-widget .gohire-job-widget-shell > .gohire-job-list-empty { background-color: var(--background-02) !important; border: 0 !important; border-radius: 0 !important; }
.careers-jobs-widget .gohire-job-list-item { margin: 0 20px !important; border-bottom: solid 1px var(--border) !important; }
.careers-jobs-widget .gohire-job-list a,.careers-jobs-widget .gohire-job-list a:hover,.careers-jobs-widget .gohire-job-list-item:hover .gohire-job-list-item-detail-title { text-decoration: none !important; }
.careers-jobs-widget .gohire-job-list a:last-child .gohire-job-list-item { border-bottom: none !important; }
.careers-jobs-widget .gohire-job-list-item-detail .gohire-job-list-item-detail-title { color: var(--text-default) !important; font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem !important; }
.careers-jobs-widget .gohire-job-list-item-detail .gohire-job-list-item-detail-sub { color: var(--text-sub) !important; }
.careers-jobs-widget .gohire-job-list-item-nav path { fill: var(--text-default) !important; }
.careers-jobs-widget .gohire-job-list-empty { box-sizing: border-box; padding: 24px; background-color: var(--background-02) !important; border: solid 1px var(--border) !important; border-radius: 8px; }
.careers-jobs-widget .gohire-job-list-empty-filtered,.careers-jobs-widget .gohire-job-pagination-results,.careers-jobs-widget .gohire-job-pagination-results strong { color: var(--text-sub) !important; }
.careers-jobs-widget .gohire-job-pagination { border-top: solid 1px var(--border) !important; }
.careers-jobs-widget .jobs-ga { border-top: solid 1px var(--border) !important; }

/*****************************
  Insights
*****************************/

.insights-hero { border-bottom: none; padding-bottom: 55px; margin-bottom: 0; }
.insights-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; padding: 0 0 30px; }
.insights-card { border: solid 1px var(--border); border-radius: 8px; background-color: var(--background-02); transition: border-color .3s, transform .3s; }
.insights-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.insights-card a { display: flex; flex-direction: column; gap: 14px; min-height: 230px; padding: 24px; border-bottom: none; }
.insights-card h2 { font-size: 1.45rem; line-height: 1.3; }
.insights-card p { font-size: .98rem; line-height: 1.65; }
.insights-card-meta,.insight-article-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.insights-card-meta span,.insight-article-meta span { color: var(--text-default); border: solid 1px var(--border-02); border-radius: 999px; padding: 5px 10px; font-size: .76rem; font-weight: 700; line-height: 1; }
.article-all-link-container { padding-bottom: 30px; }
.article-all-link { color: var(--text-sub); font-size: .9rem !important; font-weight: 700; border-bottom: solid 1px var(--border); }
.article-all-link:hover { color: var(--white); border-color: var(--white); }
.insight-article { max-width: 730px; margin: 0 auto 20px; }
.insight-article-header { border-bottom: solid 1px var(--border); padding-bottom: 35px; margin-bottom: 35px; }
.insight-article-header h1 { font-size: 3.2rem; line-height: 1.15; padding: 18px 0 14px; }
.insight-article-header p { font-size: 1.08rem; line-height: 1.75; max-width: 650px; }
.insight-article-body h2 { font-size: 1.8rem; line-height: 1.35; padding: 35px 0 12px; }
.insight-article-body h3 { font-size: 1.3rem; line-height: 1.35; padding: 25px 0 10px; }
.insight-article-body p { padding-bottom: 16px; font-size: 1.02rem; line-height: 1.85; }
.insight-article-body ul,.insight-article-body ol { padding: 0 0 16px 20px; }
.insight-article-body li { font-size: 1rem; line-height: 1.8; color: var(--text-sub); padding: 0 0 8px; }
.insight-article-body strong { color: var(--text-default); }
.insight-article-body a { color: var(--text-default); text-decoration: underline; font-weight: 700; }
.latest-insights-container { padding: 45px 0 10px; }
.latest-insights-grid { padding-bottom: 0; }
.articles-pagination { padding: 0 0 40px 0; display: flex; justify-content: center; align-items: center; flex-direction: column; }
.articles-pagination-btn { font-size: .9rem; font-weight: 700; margin: 0 10px; text-decoration: underline; color: var(--text-default); transition: all 0.5s; }
.articles-pagination-btn:hover { opacity: 0.7; }
.articles-pagination-disabled-btn { cursor: default; color: var(--text-sub) !important; opacity: .55; }
.articles-pagination-count { padding-top: 15px; }
.articles-pagination-count p { font-size: .8rem; color: var(--text-sub); }

@media screen and (max-width: 950px) {
.insights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.insight-article-header h1 { font-size: 2.7rem; } }

@media screen and (max-width: 650px) {
.insights-grid { grid-template-columns: 1fr; }
.insights-card a { min-height: 0; padding: 22px; }
.insight-article-header h1 { font-size: 2.25rem; }
.insight-article-body h2 { font-size: 1.55rem; } }

/*****************************
  Call To Action
*****************************/

.cta { display: flex; flex-direction: column; align-items: center; text-align: center; background-color: var(--background-02); border: solid 1px var(--border); border-radius: 10px; padding: 80px 50px; }
.cta-text { padding: 10px 0 30px; max-width: 550px; margin: 0 auto; }

@media screen and (max-width: 600px) {
.cta { text-align: left; align-items: flex-start; } }

@media screen and (max-width: 450px) {
.cta { padding: 60px 40px; } }

/*****************************
  Contact Page
*****************************/

.contact-form-card { border: solid 1px var(--border); border-radius: 15px; padding: 25px; box-shadow: var(--box-shadow-main); background: var(--background); }
.contact-form label { display: flex; text-align: left; margin-bottom: 8px; color: var(--text-default); font-size: 0.88rem; font-weight: 700; }
.contact-form input:not([type="hidden"]) { box-sizing: border-box; width: 100%; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; display: block; appearance: none; outline: none; background-color: var(--background); border: solid 1px var(--border); padding: 16px 10px; color: var(--text-default); border-radius: 4px; transition: all 0.5s; margin-bottom: 20px; height: 55px; }
.contact-form input[type="hidden"] { display: none !important; }
.contact-form textarea { width: calc(100% - 20px); font-family: 'DM Sans', sans-serif; background-color: var(--background); border: solid 1px var(--border); resize: none; min-height: 130px; padding: 10px; font-size: 0.95rem; outline: none; overflow: auto; max-width: 100%; border-radius: 3px; appearance: none; color: var(--text-default); transition: all 0.2s; line-height: 1.6; margin-bottom: 25px; }
.contact-form input:focus { border: solid 1px var(--brand); }
.contact-form textarea:focus { border: solid 1px var(--brand); }
.contact-form input::placeholder,.contact-form textarea::placeholder { font-family: 'DM Sans', sans-serif; color: var(--text-sub); font-weight: 600; }
.contact-form-message { border-radius: 5px; padding: 3px 5px; margin-bottom: 20px; }
.contact-form-message p { margin: 0; font-size: .9rem; color: var(--text-default); }
.contact-form-message-error { background: var(--background-02); border: solid 1px var(--border); text-align: center; }
.contact-form-success-state { text-align: center; padding: 25px 10px; }
.contact-form-success-state p { margin: 0; color: var(--text-default); }
.contact-form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.contact-form-turnstile { margin-top: 25px; }
.contact-form-turnstile iframe { width: 100% !important; }
.contact-form-turnstile .cf-turnstile { width: 100%; }
.contact-form-submit { border: 0; cursor: pointer; font-family: inherit; position: relative; display: inline-flex; align-items: center; justify-content: center; }
.contact-form-submit-loading { display: none; align-items: center; justify-content: center; }
.contact-form-submit.is-loading { pointer-events: none; opacity: .9; }
.contact-form-submit.is-loading .contact-form-submit-label { opacity: 0; }
.contact-form-submit.is-loading .contact-form-submit-loading { display: inline-flex; position: absolute; inset: 0; }
.contact-form-spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--contact-spinner-border); border-top-color: var(--white); animation: contact-spinner-spin .7s linear infinite; }
@keyframes contact-spinner-spin {
to { transform: rotate(360deg); } }
