:root {
	--tb-red: #EF2B26;
	--tb-ink: #2d1c21;
	--tb-muted: #4d4d4d;
	--tb-paper: #ffffff;
	--tb-mist: #f5f5f5;
	--tb-wash: #fcfcfc;
	--tb-hero: #f0f4f7;
	--tb-hover: #EF2B26;
	--tb-navy: #0a142f;
	--tb-line: rgba(45, 28, 33, 0.18);
	--tb-wrap: 1310px;
	--tb-gutter: 40px;
	--tb-header: 104px;
	--tb-display: "Familjen Grotesk", "Helvetica Neue", sans-serif;
	--tb-body: Geist, "DM Sans", "Helvetica Neue", sans-serif;
	--tb-btn: Akatab, "DM Sans", sans-serif;
	--tb-footer: "DM Sans", sans-serif;
	--tb-h1: 72px;
	--tb-h2-lg: 68px;
	--tb-h2: 47px;
	--tb-lead: 24px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--tb-header) + 16px);
}

body {
	margin: 0;
	background: var(--tb-paper);
	color: var(--tb-ink);
	font-family: var(--tb-body);
	font-size: 18px;
	line-height: 1.5;
	overflow-x: hidden;
}

body:not(.is-home) {
	background: var(--tb-mist);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

h1,
h2,
h3,
h4 {
	font-family: var(--tb-display);
	font-weight: 500;
	color: var(--tb-ink);
	line-height: 1.1;
	margin: 0;
	overflow-wrap: break-word;
}

p {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tb-wrap,
.tb-header__inner,
.tb-overlay__top,
.tb-split,
.tb-footer__wordmark,
.tb-footer__grid,
.tb-footer__bottom {
	width: min(calc(100% - (var(--tb-gutter) * 2)), var(--tb-wrap));
	margin-inline: auto;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--tb-ink);
	color: #fff;
	padding: 8px 12px;
	z-index: 1000;
}

.skip-link:focus {
	left: 12px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.tb-header {
	position: sticky;
	top: 0;
	z-index: 40;
	height: var(--tb-header);
	background: #fff;
	transition: box-shadow 0.35s ease;
}

.tb-header.is-scrolled {
	box-shadow: 0 10px 30px rgba(45, 28, 33, 0.08);
}

.tb-header__inner,
.tb-overlay__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--tb-header);
}

.tb-logo {
	flex: 0 0 auto;
}

.tb-logo img {
	width: 168px;
	height: 36px;
}

.tb-menu-btn {
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	position: relative;
}

.tb-menu-btn__bars,
.tb-menu-btn__bars::before,
.tb-menu-btn__bars::after {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--tb-ink);
	border-radius: 2px;
	position: absolute;
/* 	left: 9px; */
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.tb-menu-btn__bars {
	top: 19px;
}

.tb-menu-btn__bars::before,
.tb-menu-btn__bars::after {
	content: "";
}

.tb-menu-btn__bars::before {
	top: -7px;
}

.tb-menu-btn__bars::after {
	top: 7px;
}

.tb-menu-btn.is-open .tb-menu-btn__bars {
	background: transparent;
}

.tb-menu-btn.is-open .tb-menu-btn__bars::before {
	top: 0;
	transform: rotate(45deg);
}

.tb-menu-btn.is-open .tb-menu-btn__bars::after {
	top: 0;
	transform: rotate(-45deg);
}

.tb-overlay {
	position: fixed;
	inset: 0;
	background: #fff;
	z-index: 50;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-16px);
	transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tb-overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.tb-overlay__panel {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.tb-overlay__nav {
	flex: 1;
	padding: 20px 40px 40px;
}

.tb-nav {
	display: grid;
	gap: 18px;
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.tb-nav a {
	font-family: var(--tb-display);
	font-size: 28px;
	letter-spacing: -0.02em;
}

.tb-nav a {
	transition: color 0.2s ease;
}

.tb-nav a:hover,
.tb-nav .current-menu-item > a {
	color: var(--tb-red);
}

.tb-overlay.is-open .tb-nav li {
	animation: tb-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tb-overlay.is-open .tb-nav li:nth-child(1) { animation-delay: 0.04s; }
.tb-overlay.is-open .tb-nav li:nth-child(2) { animation-delay: 0.08s; }
.tb-overlay.is-open .tb-nav li:nth-child(3) { animation-delay: 0.12s; }
.tb-overlay.is-open .tb-nav li:nth-child(4) { animation-delay: 0.16s; }
.tb-overlay.is-open .tb-nav li:nth-child(5) { animation-delay: 0.2s; }
.tb-overlay.is-open .tb-nav li:nth-child(6) { animation-delay: 0.24s; }
.tb-overlay.is-open .tb-nav li:nth-child(7) { animation-delay: 0.28s; }
.tb-overlay.is-open .tb-nav li:nth-child(8) { animation-delay: 0.32s; }
.tb-overlay.is-open .tb-nav li:nth-child(9) { animation-delay: 0.36s; }

.tb-overlay.is-open .tb-overlay__cta {
	animation: tb-rise 0.55s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tb-overlay__cta {
	padding: 0 40px 48px;
	display: flex;
	justify-content: center;
}

.tb-btn {
	display: inline-flex;
	align-items: center;
	gap: 60px;
	min-height: 43px;
	padding: 8px 10px 8px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--tb-red);
	color: #fff;
	font-family: var(--tb-btn);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.tb-btn:hover,
.tb-btn:focus-visible {
	background: var(--tb-hover);
	transform: translateY(-1px);
}

.tb-btn:active {
	transform: translateY(0);
}

.tb-btn__icon {
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	flex: 0 0 22px;
	transition: transform 0.25s ease;
}

.tb-btn:hover .tb-btn__icon,
.tb-btn:focus-visible .tb-btn__icon {
	transform: translateX(4px);
}

.tb-btn__icon img {
	width: 22px;
	height: 22px;
}

.tb-btn--dark {
	background: var(--tb-ink);
}

.tb-hero,
.tb-page-hero,
.tb-mini,
.tb-audit {
	position: relative;
	overflow: hidden;
	color: #fff;
}

.tb-hero {
	min-height: 800px;
	height: 800px;
	display: grid;
	align-items: start;
	color: var(--tb-hero);
}

.tb-hero__bg,
.tb-page-hero__bg,
.tb-mini__bg,
.tb-audit__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tb-hero__bg {
	transform-origin: center;
}

.tb-hero__shade,
.tb-page-hero__shade,
.tb-audit__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 8, 8, 0.62) 0%, rgba(10, 8, 8, 0.28) 48%, rgba(10, 8, 8, 0.08) 100%);
}

.tb-hero__inner,
.tb-page-hero__inner {
	position: relative;
	z-index: 1;
	text-align: left;
	max-width: none;
}

.tb-hero__inner {
	padding: 141px 0 72px;
}

.tb-mini__inner,
.tb-audit__inner {
	position: relative;
	z-index: 1;
}

.tb-hero h1 {
	font-size: clamp(40px, 5vw, var(--tb-h1));
	line-height: 1.11;
	max-width: 860px;
	letter-spacing: -0.055em;
	color: var(--tb-hero);
}

.tb-mini h2 span,
.tb-process h2 span,
.tb-why h2 span,
.tb-cases-section h2 span,
.tb-contact h2 span,
.tb-split__copy h2 span {
	color: var(--tb-red);
}

.tb-hero p {
	margin-top: 11px;
	max-width: 808px;
	font-size: 18px;
	line-height: 1.58;
	color: var(--tb-hero);
}

.tb-hero__points {
	margin: 19px 0 18px;
	display: grid;
	gap: 0;
	max-width: 384px;
	font-size: var(--tb-lead);
	line-height: 40px;
	font-weight: 500;
	color: var(--tb-hero);
}

.tb-hero__points li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tb-hero__points li::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #fff;
	flex: 0 0 6px;
}

.tb-page-hero {
	min-height: 480px;
	height: 480px;
	display: grid;
	align-items: start;
	color: var(--tb-hero);
}

.tb-page-hero--compact {
	min-height: 327px;
	height: 327px;
}

.tb-page-hero__inner {
	padding: 90px 0 72px;
}

.tb-page-hero--compact .tb-page-hero__inner {
	padding: 104px 0 48px;
}
.page-template-about .tb-page-hero h1, .page-template-case-studies .tb-page-hero h1{
	font-size: clamp(36px, 5vw, 48px);
	max-width: 800px;
}
.tb-page-hero h1 span {
	color:#EF2B26;
}
.tb-page-hero h1 {
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.25;
	letter-spacing: -0.03em;
	max-width: 475px;
	color: var(--tb-hero);
}

.tb-page-hero--compact h1 {
	max-width: 745px;
	font-size: clamp(36px, 5vw, var(--tb-h1));
}

.tb-page-hero p {
	margin-top: 20px;
	max-width: 585px;
	font-size: 18px;
	line-height: 1.5;
/* 	color: var(--tb-ink); */
	color:white;
}
.tb-split-container {
	padding: 92px 0 117px;
	margin: 0 auto;
}
.tb-split {
	display: grid;
	grid-template-columns: minmax(240px, 434px) minmax(0, 1fr);
	gap: 62px 65px;
	align-items: center;
	background-color: white;
	border-radius: 20px;
	/* padding: 92px 0 117px;
	margin: 0 auto; */
}

.tb-split--flip {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 516px);
	/* padding: 112px 0 95px;
	margin: 0 auto; */
	padding-left: 26px;
}

.tb-split--compact {
	grid-template-columns: minmax(240px, 348px) minmax(0, 1fr);
}

.tb-split--flip.tb-split--compact {
	grid-template-columns: minmax(0, 1fr) minmax(240px, 348px);
}

.tb-split__media {
	overflow: hidden;
	border-radius: 18px;
}

.tb-split__media img {
	width: 100%;
	height: 408px;
	object-fit: cover;
	border-radius: 18px;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tb-split__media:hover img {
	transform: scale(1.04);
}

.tb-split__media--tall img {
	height: 485px;
}

.tb-split--compact .tb-split__media img {
	height: 327px;
}

.tb-split__copy,
.tb-split__media {
	min-width: 0;
}

.tb-split__copy h2,
.tb-proof h2,
.tb-note h2 {
	font-size: clamp(32px, 3.4vw, var(--tb-h2));
	line-height: 1;
	letter-spacing: -0.02em;
	max-width: 765px;
	color: var(--tb-ink);
	white-space: normal;
	overflow-wrap: break-word;
}

.tb-founder__copy blockquote p {
	font-size: clamp(32px, 3.4vw, var(--tb-h2));
	line-height: 1.18;
	letter-spacing: -0.02em;
	max-width: 733px;
	color: white;
}


.tb-founder__copy blockquote p span {
	color: #EF2B26;
}

.tb-process h2,
.tb-why h2,
.tb-cases-section h2,
.tb-panel h2,
.tb-subhead {
	font-size: clamp(36px, 4.8vw, var(--tb-h2-lg));
	line-height: 70px;
	letter-spacing: -0.03em;
	color: var(--tb-ink);
}
.process-heading {
    font-size: clamp(30px, 4.8vw, var(--tb-h2-lg));
    letter-spacing: -2px;
    color: rgb(45, 28, 33);
    font-weight: 500;
    margin-bottom: 49px;
    margin-top: 32px;
	text-align:center;
}
.process-heading span{
	color: var(--tb-red);
}
.about {
    background-color: rgb(245, 245, 245);
	padding-top: 96px;
    padding-bottom: 96px;
}
.desktop{
	display:block;
}
.mobile{
	display:none;
}
.col-12{
	width:100%;
}
@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 auto;
		justify-content: center;
    	display: flex;
        width: 33.33333333%;
    }
}
.sub-heading {
    text-align: center;
}
.pdf_img {
    width: 330px !important;
}
.iit {
    width: 130px !important;
}
.align-items-center {
    align-items: center !important;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}
@media only screen and (max-width:768px){
	.about {
		padding-top: 26px;
		padding-bottom: 26px;
	}
	.tb-hero p {
    	font-size: 14px;
	}
	.tb-hero__inner {
		padding: 52px 0 72px;
	}
	.tb-hero__points {
		font-size: 18px;
		line-height: 30px;
	}
	.mobile{
		display:block;
	}	
	.desktop{
		display:none;
	}
	.col-md-4{
        justify-content: center;
        display: flex;
	}
	.iit {
		width: 100px !important;
		margin:auto;
	}
	.pdf_img {
		width: 240px !important;
		margin: 30px auto;
	}
}

.tb-panel h2 span {
	color:#EF2B26;
}

.tb-contact h2 {
	font-size: clamp(36px, 5vw, var(--tb-h2-lg));
	line-height: 1.15;
	letter-spacing: -0.03em;
	max-width: 582px;
	color: white;
}

.tb-split__copy p,
.tb-panel p,
.tb-note p,
.tb-founder__copy p,
.tb-proof p,
.tb-point p,
.tb-case p {
	margin-top: 18px;
	color: var(--tb-muted);
	font-size: 18px;
	line-height: 27px;
	max-width: 616px;
}
.tb-founder__copy p{
	color:white!important;
	margin-bottom: 20px;
}

.tb-split__copy .tb-btn {
	margin-top: 28px;
}

.tb-process {
	padding: 192px 0 52px;
	overflow: visible;
	background: var(--tb-paper);
}

.tb-process h2 {
	max-width: 1310px;
	margin-bottom: 49px;
}

.tb-process__layout {
	display: grid;
	grid-template-columns: minmax(0, 849px) minmax(260px, 315px);
	gap: 90px;
	align-items: center;
	justify-content: space-between;
}

.tb-process__rings {
	position: relative;
	width: min(100%, 849px);
	aspect-ratio: 849 / 842;
	overflow: visible;
}

.tb-process__outer {
	width: 100%;
	height: auto;
	transform-origin: center;
	will-change: transform;
}

.tb-process__outer.animate-ring {
	animation: tb-spin 30s linear infinite;
}

.tb-process__inner {
	position: absolute;
	width: 685px;
	max-width: 80.7%;
	height: auto;
	top: 8.9%;
	left: 8.9%;
	transform-origin: center;
	will-change: transform;
}

.tb-process__inner.animate-ring {
	animation: tb-spin-rev 20s linear infinite;
}

.tb-process__label {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-family: var(--tb-body);
	font-size: clamp(28px, 3.5vw, 50px);
	line-height: 1.31;
	letter-spacing: -0.08em;
	font-weight: 500;
	color: var(--tb-red);
}

.tb-process__steps {
	display: grid;
	gap: 42px;
}

.tb-process__num {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	line-height: 25px;
	font-weight: 600;
	color: var(--tb-ink);
}

.tb-process__num::before {
	content: "";
	width: 7px;
	height: 7px;
	background: var(--tb-red);
}

.tb-process__steps h3 {
	margin-top: 8px;
	font-size: clamp(24px, 2.4vw, 32px);
	line-height: 42px;
	color: var(--tb-red);
}

.tb-process__steps p {
	margin-top: 8px;
	color: var(--tb-muted);
	font-size: 18px;
	line-height: 27px;
	max-width: 315px;
}

.tb-mini {
	min-height: 332px;
	display: grid;
	align-items: center;
}

.tb-mini::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2));
}

.tb-mini__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 48px 0;
}

.tb-mini h2 {
	font-size: clamp(32px, 4vw, 56px);
	max-width: 760px;
	color: #fff;
}

.tb-why,
.tb-panel,
.tb-cases-section,
.tb-proof,
.tb-founder,
.tb-note {
	padding: 88px 0;
}

body:not(.is-home) .tb-panel,
body:not(.is-home) .tb-proof,
body:not(.is-home) .tb-founder,
body:not(.is-home) .tb-note,
body:not(.is-home) .tb-cases-section,
body:not(.is-home) .tb-content {
	background: var(--tb-mist);
}
.tb-proof{
	background: white!important;
}
.tb-note h2{
	max-width: 100%;
}
.tb-proof h2 span, .tb-subhead span, .tb-split__copy h2 span, .tb-note h2 span{
	color: #EF2B26;
}

.tb-why {
	padding: 204px 0 96px;
	/* background: var(--tb-mist); */
	background: #FCFCFC;
	min-height: 711px;
}

.tb-why h2 {
	text-align: center;
	margin: 0 auto 84px;
	max-width: none;
	white-space: normal;
}

.tb-why__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
	text-align: center;
}

.tb-why__icon {
	position: relative;
	width: min(185px, 100%);
	aspect-ratio: 185 / 188;
	margin: 0 auto 18px;
	display: grid;
	place-items: center;
}

.tb-why__icon img {
	width: 100%;
	height: auto;
}

.tb-why__icon--circled img:not(.tb-why__ring) {
	width: 42%;
	height: auto;
	position: relative;
	z-index: 1;
}

.tb-why__ring {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.tb-why__ring.animate-ring {
	animation: tb-spin 22s linear infinite;
}

.tb-why__grid p {
	font-family: var(--tb-display);
	font-size: 22px;
	line-height: 32px;
	max-width: 179px;
	margin: 0 auto;
	color: var(--tb-red);
}

.tb-audit {
	min-height: 353px;
	display: grid;
	align-items: center;
	text-align: center;
}

.tb-audit.has-follow {
	cursor: none;
}

.tb-audit.has-follow .tb-btn {
	cursor: none;
}

.mouse-circle,
.mouse-circle-1,
.cursor-dot {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity: 0;
	will-change: transform, opacity;
}

.mouse-circle {
	width: 60px;
	height: 60px;
	border: 2px solid #fff;
	z-index: 30;
	transform: translate(-50%, -50%) scale(0);
}

.mouse-circle-1 {
	width: 100px;
	height: 100px;
	border: 2px solid #fff;
	z-index: 30;
	transform: translate(-50%, -50%) scale(0);
}

.cursor-dot {
	width: 18px;
	height: 18px;
	background: #fff;
	z-index: 20;
	transform: translate(-50%, -50%);
}

.tb-audit__inner {
	padding: 56px 0;
}

.tb-audit h2 {
	font-size: clamp(28px, 4.8vw, var(--tb-h2-lg));
	line-height: 70px;
	letter-spacing: -0.03em;
	max-width: none;
	margin-inline: auto;
	color: #fff;
	white-space: normal;
}

.tb-audit p {
	margin: 27px 0 40px;
	font-size: clamp(22px, 2.6vw, 36px);
	line-height: 1.55;
	font-family: var(--tb-display);
	color: var(--tb-red);
}

.is-home .tb-cases-section {
	/* background: var(--tb-paper); */
	background: #FCFCFC;
}

.tb-cases-section {
	padding: 96px 0;
}

.tb-cases-section h2 {
	max-width: none;
	white-space: normal;
}

.tb-cases {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 47px 47px;
	margin: 54px 0 67px;
}

.tb-case {
	display: grid;
	grid-template-columns: 299px minmax(0, 1fr);
	gap: 19px;
	background: rgba(225, 225, 225, 0.33);
	border: 0;
	border-radius: 0;
	padding: 18px;
	min-height: 371px;
	align-items: stretch;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tb-case:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(45, 28, 33, 0.08);
}

.tb-case__media {
	overflow: hidden;
	border-radius: 0;
	width: 299px;
	min-height: 335px;
}

.tb-case__media img {
	width: 299px;
	height: 335px;
	min-height: 335px;
	object-fit: cover;
	border-radius: 0;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.tb-case__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.tb-case:hover .tb-case__media img {
	transform: scale(1.05);
}

.tb-case h3 {
	font-size: 22px;
	line-height: 27px;
	letter-spacing: -0.02em;
	color: var(--tb-ink);
}

.tb-case .tb-btn {
	margin-top: auto;
	/* padding-top: 18px; */
	justify-content: space-between;
}

.tb-contact {
	position: relative;
/* 	padding: 80px 0 40px; */
	padding: 80px 0 0px;
	overflow: hidden;
	background: #2D1C21;
/* 	min-height: 835px; */
}

.tb-contact__ghost {
	position: absolute;
	top: 30px;
	left: -40px;
	font-family: var(--tb-display);
	font-size: clamp(80px, 16vw, 220px);
	line-height: 1.29;
	color: rgba(45, 28, 33, 0.05);
	text-transform: uppercase;
	letter-spacing: -0.04em;
	pointer-events: none;
	white-space: nowrap;
}

.tb-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 582px) minmax(0, 626px);
	gap: 48px;
	align-items: start;
	position: relative;
	z-index: 1;
}

.tb-contact__intro {
	margin: 18px 0 28px;
	color: var(--tb-muted);
	font-size: 18px;
	line-height: 27px;
	max-width: 518px;
}

.tb-contact__copy .tb-btn {
	margin-top: 28px;
}

.tb-form {
	display: grid;
	gap: 28px;
	min-width: 0;
}

.tb-form label,
.tb-form__row > * {
	min-width: 0;
	display: block;
}

.tb-form .tb-btn {
	justify-self: start;
}

.tb-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.tb-form input,
.tb-form select,
.tb-form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #F2F2F2;
	background: transparent;
	padding: 8px 0 12px;
	border-radius: 0;
	outline: none;
	color: #F2F2F2;
}

.tb-form input:focus,
.tb-form select:focus,
.tb-form textarea:focus {
	border-bottom-color: var(--tb-red);
}

.tb-form textarea {
	resize: vertical;
	min-height: 48px;
}

.tb-form__select {
	position: relative;
}

.tb-form__notice {
	color: var(--tb-red);
	font-weight: 500;
}

.tb-contact__mark {
	margin-top: 20px;
	opacity: 0.08;
	pointer-events: none;
}

.tb-contact__mark img {
	width: 1224px;
	max-width: 100%;
	height: auto;
	margin-left: auto;
}

.tb-footer {
	background: var(--tb-paper);
	padding: 96px 0 48px;
	color: var(--tb-ink);
	font-family: var(--tb-footer);
}

.tb-footer__wordmark {
	margin-bottom: 48px;
}

.tb-footer__wordmark img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.tb-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.5fr);
	gap: 40px 48px;
	width: min(calc(100% - (var(--tb-gutter) * 2)), 824px);
	margin: 0 auto 48px;
}

.tb-footer__heading {
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	margin-bottom: 15px;
	color: var(--tb-ink);
}

.tb-footer__col a,
.tb-footer__address {
	font-size: 16px;
	line-height: 21px;
}

.tb-footer__heading--space {
	margin-top: 40px;
}

.tb-footer__col ul {
	display: grid;
	gap: 10px;
}

.tb-footer__col a:hover {
	color: var(--tb-red);
}

.tb-footer__form {
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid var(--tb-line);
	padding-bottom: 10px;
}

.tb-footer__form input {
	flex: 1;
	border: 0;
	background: transparent;
	padding: 0;
	outline: none;
}

.tb-footer__form button {
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.tb-footer__form button img {
	width: 23px;
	height: 16px;
}

.tb-footer__address {
	color: var(--tb-muted);
}

.tb-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--tb-line);
}

.tb-footer__social {
	display: flex;
	gap: 20px;
}

.tb-footer__social img {
	width: 20px;
	height: 20px;
}

.tb-footer__copy {
	font-size: 14px;
	color: var(--tb-muted);
}

.tb-sources,
.tb-rooms,
.tb-materials,
.tb-points {
	display: grid;
	gap: 28px;
	margin-top: 40px;
}

.tb-sources {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px;
}

.tb-source {
	flex: 1 1 calc(25% - 21px);
	max-width: calc(25% - 21px);
	min-width: 220px;
}

.tb-source,
.tb-room,
.tb-material,
.tb-point {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	text-align:center;
}

.tb-source img,
.tb-room img,
.tb-material img,
.tb-point img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.tb-source h3,
.tb-room h3 {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 20px;
	color: #fff;
	font-size: 22px;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.page-template-emf-protection-home .tb-panel .tb-subhead {
    font-size: 36px;
    text-align: left;
}
/* .tb-source::after, */
.tb-room::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55));
}

.tb-source h3,
.tb-room h3 {
	z-index: 1;
}

.tb-lede {
	margin: 36px 0 24px;
	color: var(--tb-muted);
	font-size: 18px;
	line-height: 27px;
}

.tb-lede--center,
.tb-panel > .tb-wrap > h2,
.tb-subhead {
	text-align: center;
}

.tb-lede--center {
	max-width: 895px;
	margin-inline: auto;
}

.tb-subhead {
	margin-top: 48px;
	font-size: clamp(36px, 4.8vw, var(--tb-h2-lg));
	line-height: 80px;
	letter-spacing: -0.03em;
	color: var(--tb-ink);
}

.tb-charts {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px 18px;
	background: #fff;
	border-radius: 24px;
	padding: 32px 16px;
	overflow: hidden;
}

.tb-chart {
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transform: translateY(20px);
}

.tb-charts.is-in .tb-chart {
	animation: fadeInUp 0.6s ease-out forwards;
}

.tb-charts.is-in .tb-chart:nth-child(1) { animation-delay: 0.1s; }
.tb-charts.is-in .tb-chart:nth-child(2) { animation-delay: 0.2s; }
.tb-charts.is-in .tb-chart:nth-child(3) { animation-delay: 0.3s; }
.tb-charts.is-in .tb-chart:nth-child(4) { animation-delay: 0.4s; }
.tb-charts.is-in .tb-chart:nth-child(5) { animation-delay: 0.5s; }
.tb-charts.is-in .tb-chart:nth-child(6) { animation-delay: 0.6s; }

.tb-chart__ring {
	position: relative;
	width: min(180px, 100%);
	aspect-ratio: 1;
}

.tb-chart__ring svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.tb-chart__bg {
	fill: none;
	stroke: #e9ecef;
	stroke-width: 2;
}

.tb-chart__fill {
	fill: none;
	stroke: var(--tb-red);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-dasharray: 377;
	stroke-dashoffset: 377;
}

.tb-chart__content {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	text-align: center;
	z-index: 1;
}

.tb-chart__value {
	font-family: var(--tb-display);
	font-size: 18px;
	font-weight: 600;
	color: #ff2727;
}

.tb-chart__label {
	font-size: 13px;
	color: var(--tb-muted);
	max-width: 120px;
	margin-inline: auto;
}

.tb-timeline {
	margin-top: 64px;
}

.tb-timeline__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	position: relative;
	padding-top: 28px;
}

.tb-timeline__row::before {
	content: "";
	position: absolute;
	left: calc(100% / 6);
	right: calc(100% / 6);
	top: 6px;
	height: 2px;
	background: var(--tb-ink);
	transition: background-color 2s ease-in-out;
}

.tb-timeline.in-view .tb-timeline__row::before {
	background-color: #ef2b26;
}

.tb-timeline__row article {
	position: relative;
	padding-top: 18px;
	text-align: center;
}

.tb-timeline__row article::before {
	content: "";
	position: absolute;
	top: -28px;
	left: 50%;
	width: 14px;
	height: 14px;
	margin-left: -7px;
	background: var(--tb-ink);
	border-radius: 50%;
	border: 3px solid var(--tb-paper);
	transition: background-color 2s ease-in-out;
}

.tb-timeline.in-view .tb-timeline__row article::before {
	background-color: #ef2b26;
}

.tb-timeline__row--two {
	grid-template-columns: 1fr 1fr;
	max-width: 880px;
	margin: 56px auto 0;
}

.tb-timeline__row--two::before {
	left: 25%;
	right: 25%;
}

.tb-timeline h3 {
	font-size: 24px;
}

.tb-rooms {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tb-room img {
	height: 400px;
}

.tb-materials {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tb-material img {
	height: 288px;
	border-radius: 18px;
}

.tb-material h3 {
	margin-top: 16px;
	font-size: 22px;
	text-align: center;
}

.tb-points {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tb-point img {
	height: 386px;
	border-radius: 18px;
}

.tb-point h3 {
	margin-top: 18px;
	font-size: 22px;
}
.tb-founder{
	background: black!important;
}

.tb-proof__grid,
.tb-founder__grid {
	display: grid;
	grid-template-columns: 1fr 486px;
	gap: 56px;
	align-items: center;
}

.tb-founder__grid {
	grid-template-columns: 470px 1fr;
}

.tb-proof__media img,
.tb-founder__media img {
	width: 100%;
	height: 442px;
	object-fit: cover;
	border-radius: 18px;
}

.tb-kicker {
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tb-red);
}

.tb-founder__copy blockquote {
	margin: 16px 0 24px;
}

.tb-note {
	text-align: center;
}

.tb-note p {
	max-width: 1106px;
	margin: 18px auto 0;
}

.tb-faq {
	display: grid;
}

.tb-faq__item {
	border-top: 1px solid rgba(205, 214, 218, 0.25);
	border-bottom: 1px solid rgba(205, 214, 218, 0.25);
	margin-top: -1px;
}

.page-template-book-assessment .tb-page-hero h1 {
    color: #2D1C21;
	max-width:757px;
}
.page-template-book-assessment .tb-page-hero__shade {
	background: none;
}
.page-template-book-assessment .tb-contact {
    padding: 80px 0 40px;
}
.page-template-book-assessment .tb-contact__intro{
	color:white!important;
}
.page-template-about .tb-page-hero p, .page-template-why-trubode .tb-page-hero p {
    color: white;
}

.tb-faq__item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	min-height: 59px;
	font-family: var(--tb-display);
	font-size: 18px;
	line-height: 27px;
	color: var(--tb-ink);
}

.tb-faq__item summary::-webkit-details-marker {
	display: none;
}

.tb-faq__icon {
	width: 24px;
	height: 24px;
	position: relative;
	flex: 0 0 24px;
}

.tb-faq__icon::before,
.tb-faq__icon::after {
	content: "";
	position: absolute;
	background: var(--tb-ink);
	left: 50%;
	top: 50%;
}

.tb-faq__icon::before {
	width: 14px;
	height: 2px;
	transform: translate(-50%, -50%);
}

.tb-faq__icon::after {
	width: 2px;
	height: 14px;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.tb-faq__item[open] .tb-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

.tb-faq__item p {
	padding: 0 24px 18px;
	max-width: none;
	animation: tb-faq-open 0.28s ease;
}

.tb-content {
	padding: 64px 0 96px;
}

.tb-js [data-aos="fade-up"] {
	opacity: 0;
	transform: translate3d(0, 32px, 0);
	transition-property: opacity, transform;
	transition-duration: 400ms;
	transition-timing-function: ease;
}

.tb-js [data-aos="fade-up"].aos-animate {
	opacity: 1;
	transform: none;
}

@keyframes tb-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes tb-spin-rev {
	to {
		transform: rotate(-360deg);
	}
}

@keyframes tb-rise {
	from {
		opacity: 0;
		transform: translate3d(0, 22px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tb-faq-open {
	from {
		opacity: 0;
		transform: translate3d(0, -8px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.admin-bar .tb-header {
	top: 32px;
}

.admin-bar {
	scroll-padding-top: calc(var(--tb-header) + 48px);
}

@media (max-width: 1280px) {
	.tb-why__grid,
	.tb-charts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tb-cases {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1100px) {
	.tb-source {
		flex-basis: calc(50% - 14px);
		max-width: calc(50% - 14px);
	}

	.tb-split,
	.tb-split--flip,
	.tb-split--compact,
	.tb-split--flip.tb-split--compact,
	.tb-process__layout,
	.tb-contact__grid,
	.tb-cases,
	.tb-case,
	.tb-proof__grid,
	.tb-founder__grid,
	.tb-footer__grid {
		grid-template-columns: 1fr;
	}

	.tb-why__grid,
	.tb-charts,
	.tb-sources,
	.tb-rooms,
	.tb-materials,
	.tb-points,
	.tb-timeline__row,
	.tb-timeline__row--two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tb-timeline__row::before,
	.tb-timeline__row--two::before {
		left: 25%;
		right: 25%;
	}

	.tb-case__media img {
		width: 100%;
		height: 280px;
	}

	.tb-mini__inner,
	.tb-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.tb-hero,
	.tb-page-hero,
	.tb-page-hero--compact {
		height: auto;
		min-height: 560px;
	}

	.tb-page-hero--compact {
		min-height: 360px;
	}

	.tb-why {
		padding: 96px 0;
		min-height: 0;
	}

	.tb-why h2,
	.tb-split__copy h2,
	.tb-cases-section h2,
	.tb-audit h2,
	.tb-proof h2,
	.tb-note h2,
	.tb-founder__copy blockquote p {
		white-space: normal;
	}

	.tb-process {
		padding: 96px 0 48px;
	}

	.tb-contact {
		min-height: 0;
	}

	.tb-process h2,
	.tb-why h2,
	.tb-cases-section h2,
	.tb-panel h2,
	.tb-subhead,
	.tb-audit h2 {
		line-height: 1.15;
	}

	.tb-case__media,
	.tb-case__media img {
		width: 100%;
		height: 280px;
		min-height: 280px;
	}

	.tb-chart__ring {
		width: min(160px, 100%);
	}

	.tb-process__rings {
		margin-inline: auto;
	}
}

@media (max-width: 720px) {
	:root {
		--tb-gutter: 16px;
		--tb-header: 80px;
	}

	.tb-header,
	.tb-header__inner,
	.tb-overlay__top {
		height: var(--tb-header);
	}

	.tb-footer {
		padding: 32px 0;
	}

	.tb-nav a {
		font-size: 22px;
	}

	.tb-source {
		flex-basis: 100%;
		max-width: 100%;
	}

	.tb-why__grid,
	.tb-charts,
	.tb-sources,
	.tb-rooms,
	.tb-materials,
	.tb-points,
	.tb-form__row,
	.tb-timeline__row,
	.tb-timeline__row--two {
		grid-template-columns: 1fr;
	}

	.tb-timeline__row::before,
	.tb-timeline__row--two::before {
		left: 6px;
		right: auto;
		top: 0;
		bottom: 0;
		width: 2px;
		height: auto;
	}

	.tb-timeline__row article {
		text-align: left;
		padding-left: 28px;
	}

	.tb-timeline__row article::before {
		left: 0;
		margin-left: 0;
		top: 18px;
	}

	.tb-hero,
	.tb-page-hero,
	.tb-page-hero--compact {
		height: auto;
		min-height: 480px;
	}

	.tb-hero h1, .tb-page-hero h1 {
        font-size: 28px;
		line-height: 1.15;
		letter-spacing: -0.03em;
		max-width: none;
	}

	.tb-why h2 {
		white-space: normal;
	}

	.tb-split__media img,
	.tb-split__media--tall img,
	.tb-split--compact .tb-split__media img {
		height: 260px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	.tb-js [data-aos="fade-up"],
	.tb-chart {
		opacity: 1 !important;
		transform: none !important;
	}

	.tb-audit.has-follow {
		cursor: auto;
	}

	.mouse-circle,
	.mouse-circle-1,
	.cursor-dot {
		display: none;
	}
}
