:root {
	--color-black: rgba(34, 34, 34, 1);
	--color-light-grey: rgba(242, 240, 242, 1);
	--color-white: rgba(252, 251, 252, 1);
	--color-pink: rgba(235, 101, 225, 1);
	--color-yellow: rgba(255, 166, 2, 1);
	--font1: 'articulat-cf';
	--font2: 'clarendon-text-pro';
	--font3: 'nitti';
	--radius1: 20px;
	--radius2: 12px;
}


/* GENERIC */
*:focus {
	outline: none;
	border: none;
}

html {
	scroll-behavior: auto !important;
}

html, body {
	font-family: var(--font1);
	font-size: 62.5%;
	background-color: var(--color-light-grey);
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--color-black);
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font2);
	font-weight: 400;
}

h1 {
	font-size: 6rem;
	line-height: 6rem;
	letter-spacing: -0.06rem;
}

h2 {
	font-size: 4.5rem;
	line-height: 5.2rem;
	letter-spacing: -0.04rem;
}

h3 {
	font-size: 3.5rem;
	line-height: 3.8rem;
	letter-spacing: -0.03rem;
}

h4 {
	font-size: 3.2rem;
	line-height: 3.5rem;
	letter-spacing: -0.03rem;
}

h5 {
	font-size: 2.5rem;
	line-height: 3.2rem;
	letter-spacing: -0.02rem;
}

h6 {
	font-family: var(--font3);
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.1rem;
	line-height: 2.6rem;
	color: var(--color-pink);
	text-transform: uppercase;
	margin-bottom: 0 !important;
}

p, ul li {
	font-size: 2rem;
	line-height: 2.6rem;
}


/* NAVBAR */
#masthead {
	position: absolute;
	top: 1.3rem;
	left: 0;
	width: 100%;
	height: 20rem;
	z-index: 100;
}

.custom-logo {
	width: 13.6vw;
	height: auto;
	margin-top: 7px;
	margin-left: 2rem;
}

.page-id-27 .custom-logo {
	opacity: 0;
}

.main-navigation ul {
	justify-content: end;
	background-color: var(--color-light-grey);
	margin-top: 1rem;
	padding: 1rem 0 1rem 1rem;
}

.main-navigation li a {
	font-family: var(--font3);
	font-size: 1.8rem;
	text-transform: uppercase;
	padding: 0 0 0 4rem;
}

.main-navigation li a:hover {
	color: var(--color-pink);
}

.main-navigation li:first-child a {
	padding-left: 1rem;
}

.page-id-191 .main-navigation ul {
	background-color: transparent;
}

/* MAIN BANNER */
#main-banner .fl-row-content-wrap {
	min-height: calc(100vh - 6rem);
}


/* INTRO TEXT */
#intro-title h2 span {
	background-color: var(--color-light-grey);
	display: inline-block;
	position: relative;
	z-index: 2;
	padding: 0 3rem;
}

.wave-1 {
	position: absolute;
	top: -30.5%;
	left: 7%;
}

.wave-2 {
	position: absolute;
	bottom: 12.5%;
	right: 4%;
}


/* OFFERINGS */
#offerings-sticky {
	position: sticky;
	top: 3rem;
}

.offering {
	background-color: var(--color-white);
	border-radius: var(--radius1);
	padding: 4.5rem;
	margin-bottom: 3rem;
	max-width: 500px;
	margin-left: auto;
}

.offering-icon {
	width: 65px;
	height: auto;
	margin-bottom: 6rem;
}

.offering-description, 
.offering-description p {
	font-size: 2rem;
	line-height: 2.6rem;
}


/* OUR WORK */
.works-list .slick-track {
	display: flex !important;
}

.works-list .slick-slide {
	margin: 0 1rem;
	display: flex;
	height: auto !important;
}

.works-list .slick-slide:first-child {
	margin-left: 0;
}

.custom-slick-prev.slick-arrow,
.custom-slick-next.slick-arrow {
	appearance: none;
	background: none;
	border: none;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -300%);
	z-index: 4;
}

.custom-slick-prev.slick-arrow {
	left: -3%;
}

.custom-slick-next.slick-arrow {
	right: -7%;
}

.custom-slick-prev svg,
.custom-slick-next svg {
	width: 4rem;
	height: auto;
}

.works-list .slick-arrow.slick-disabled {
	filter: grayscale(1);
}

.works-list::before,
.works-list::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	z-index: 2;
	width: 25rem;
	height: 100%;
	pointer-events: none;
	opacity: 1;
	transition: 0.3s opacity;
	background: #ffffff;
}

.works-list::before {
	left: -9rem;
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(242, 240, 242, 1) 60%, rgba(242, 240, 242, 1) 100%);
}

.works-list::after {
	right: -9rem;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(242, 240, 242, 1) 60%, rgba(242, 240, 242, 1) 100%);
}

.works-list.hide-first-gradient::before {
	opacity: 0;
	transition: 0.3s opacity;
}

.works-list.hide-last-gradient::after {
	opacity: 0;
	transition: 0.3s opacity;
}

.work {
	height: 100%;
	display: flex !important;
	flex-direction: column;
}

.work-thumb {
	border-radius: var(--radius2);
	overflow: hidden;
	aspect-ratio: 5 / 4;
}

.work-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.work h5 {
	font-size: 2rem;
	line-height: 2.4rem;
	margin-bottom: 2rem;
}

.work .hashtag-text {
	opacity: 0.5;
	margin-top: auto;
	font-size: 1.8rem;
}


/* OUR CLIENTS */
.clients-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-areas:
		"a b c d e"
		"f g g h i";
	gap: 1rem;
	align-items: center;
}

.client-thumb {
	padding: 2.5rem 1rem;
	text-align: left;
}

.client-thumb img {
	height: 4rem;
	max-width: 85%;
	object-fit: contain;
	object-position: left;
	mix-blend-mode: multiply;
}

.clients-list .client:nth-child(1) { grid-area: a; }
.clients-list .client:nth-child(2) { grid-area: b; }
.clients-list .client:nth-child(3) { grid-area: c; }
.clients-list .client:nth-child(4) { grid-area: d; }
.clients-list .client:nth-child(5) { grid-area: e; }
.clients-list .client:nth-child(6) { grid-area: f; }
.clients-list .client:nth-child(7) { grid-area: g; }
.clients-list .client:nth-child(8) { grid-area: h; }
.clients-list .client:nth-child(9) { grid-area: i; }

.clients-list .client:nth-child(3) img {
	height: 6rem;
	margin-left: 3rem;
}

.clients-list .client:nth-child(4) img {
	margin-left: 3rem;
}

.clients-list .client:nth-child(7) img {
	height: 1.6rem;
	margin-left: 7rem;
}

.clients-list .client:nth-child(8) img {
	height: 3rem;
	position: relative;
	top: -0.5rem;
	left: -5rem;
}


/* TESTIMONIALS */
.testimonials-list {
	margin-left: -3rem;
	margin-right: -3rem;
	padding: 7rem;
	background-color: var(--color-pink);
	max-width: 100vw;
	overflow: hidden;
}

.testimonials-list .slick-list {
	aspect-ratio: 9 / 4.9;
	background-image: url('https://3bigthings.studio/wp-content/uploads/2025/09/testimonial-new-bg2.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top left;
	display: flex;
	align-items: center;
}

.testimonials-list .slick-track {
	display: flex;
	align-items: center;
}

.testimonials-list .slick-dots {
	width: calc(100% - 14rem);
	bottom: 9.8rem;
}

.testimonials-list .slick-dots li {
	background-color: var(--color-pink);
}

.testimonials-list .slick-dots li button:before {
	font-size: 18px;
	line-height: 21px;
	border: 2px solid #fff;
	border-radius: 100px;
	color: transparent;
	opacity: 1;
	width: 22px;
	height: 22px;
}

.testimonials-list .slick-dots li.slick-active button:before {
	opacity: 1;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 100px;
	background-color: #fff;
}

.testimonial-inner {
	max-width: 900px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.testimonial-text {
	padding: 5.2rem;
	background-color: var(--color-pink);
	color: var(--color-light-grey);
}

.testimonial-detail {
	font-size: 1.7rem;
	font-family: var(--font1);
	color: var(--color-light-grey);
	text-align: left;
	display: inline-block;
	position: relative;
	margin-top: 3rem;
}

.company-logo {
	width: 80px;
	height: 80px;
	background-color: var(--color-light-grey);
	border-radius: 100px;
	overflow: hidden;
	padding: 1.6rem;
	flex-shrink: 0;
}

.company-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.person-name {
	font-weight: 700;
}


/* ABOUT US */
.team-member {
	background-color: transparent;
	border-radius: var(--radius1);
	transition: 0.3s;
	cursor: pointer;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.member-photo {
	aspect-ratio: 4 / 5;
	border-radius: var(--radius2);
	overflow: hidden;
	margin-bottom: 2rem;
}

.member-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}

.team-member:hover .member-photo img {
	width: 110%;
	height: 110%;
	transition: 0.3s;
}

.team-member .social-icon {
	margin-top: 2rem;
	width: 40px;
	height: auto;
}

.team-modal .modal-dialog {
	max-width: 80% !important;
}

.team-modal .modal-content {
	border-radius: var(--radius1);
}

.team-modal .modal-body {
	padding: 4.5rem;
}

.team-modal .btn-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-size: 1.5rem;
}

#eventRegistration .btn-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-size: 1.5rem;
}

.member-bio p,
.member-bio ul li {
	font-size: 1.6rem;
	line-height: 2.3rem;
}

.member-border {
	width: 100%;
	height: 5px;
	background-image: url(https://3bigthings.studio/wp-content/uploads/2025/09/border.svg);
	background-position: left center;
	background-repeat: repeat-x;
	background-size: cover;
	margin-top: 3.5rem;
	margin-bottom: 3rem;
}


/* TOOLKIT */
#toolkit,
#contact {
	margin-left: -3rem;
	margin-right: -3rem;
}

#toolkit .fl-row-content-wrap {
	padding: 3rem;
}

#toolkit h6 {
	color: #fff;
}

.form-sticky {
	position: sticky;
	top: 3rem;
	padding-right: 5rem;
}

.toolkit-inner.disable-it {
	opacity: 0.4;
	pointer-events: none;
}


/* FORMS */
#wpcf7-f13-p27-o1 p,
#wpcf7-f196-p191-o1 p,
#wpcf7-f351-p302-o1 p {
	border: 2px solid rgba(178, 174, 178, 0.5);
	border-radius: var(--radius2);
	padding: 2rem;
	margin-bottom: 2rem;
}

#wpcf7-f13-p27-o1 p label,
#wpcf7-f196-p191-o1 p label,
#wpcf7-f351-p302-o1 p label {
	font-size: 1.8rem;
	font-family: var(--font3);
	color: rgba(27, 27, 27, 0.45);
	width: 100%;
	text-transform: uppercase;
}

#wpcf7-f13-p27-o1 input[type="text"], 
#wpcf7-f13-p27-o1 input[type="email"], 
#wpcf7-f13-p27-o1 textarea,
#wpcf7-f196-p191-o1 input[type="text"],
#wpcf7-f196-p191-o1 input[type="email"],
#wpcf7-f351-p302-o1 input[type="text"],
#wpcf7-f351-p302-o1 input[type="email"],
#wpcf7-f351-p302-o1 input[type="tel"] {
	font-family: var(--font1);
	font-size: 2rem;
	line-height: 2.4rem;
	color: var(--color-black);
	border: none;
	border-radius: 0;
	background: transparent;
}

#wpcf7-f13-p27-o1 form p:has(input[type="submit"]),
#wpcf7-f196-p191-o1 form p:has(input[type="submit"]),
#wpcf7-f351-p302-o1 form p:has(input[type="submit"]) {
	border: none;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0;
	margin: 0;
}

#wpcf7-f351-p302-o1 form p:has(.newsletter-consent) {
	padding: 0;
	border: 0;
}

#wpcf7-f351-p302-o1 form p:has(.newsletter-consent) label {
	font-size: 1.4rem;
}

.newsletter-consent .wpcf7-list-item {
	margin-left: 0;
}

.newsletter-consent .wpcf7-list-item-label {
	position: relative;
	top: -2.5px;
}

#register-event-btn {
	cursor: pointer;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: #ffb900;
	font-size: 1.5rem;
	padding: 2rem;
	border-radius: var(--radius2);
	margin: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
	font-size: 1.5rem;
	padding: 2rem;
	border-radius: var(--radius2);
	margin: 0;
}

.wpcf7-list-item {
	display: block;
}

.wpcf7-not-valid-tip {
	font-size: 1.3rem;
	font-family: var(--font3);
	text-transform: uppercase;
}

/* FOOTER */
.site-info {
	aspect-ratio: 262/143;
	background-image: url('https://3bigthings.studio/wp-content/uploads/2025/09/footer-bg2.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
}

.site-info .row {
	position: absolute;
	bottom: 3rem;
	right: 3rem;
	width: 100%;
}

.footer-links {
	background-color: var(--color-light-grey);
	padding: 2rem 4rem;
}

.footer-links a {
	text-decoration: none;
	font-size: 1.6rem;
	line-height: 2.4rem;
	letter-spacing: -0.022rem;
	min-height: 2.4rem;
}

.footer-links a:hover {
	color: var(--color-pink);
}

.second-footer {
	margin-right: 4rem;
	margin-left: 12rem;
}

.copy-text {
	font-family: var(--font3);
	font-size: 1.5rem;
	color: rgba(27,27,27,0.4);
	text-transform: uppercase;
	margin-left: 30rem;
	background-color: var(--color-light-grey);
	padding: 2rem 4rem 1rem;
}

.copy-text a {
	color: rgba(27,27,27,0.4);
	text-decoration: none;
}

.grecaptcha-badge {
	visibility: hidden !important;
}

#back-to-top {
	position: fixed;
	bottom: 1.5rem;
	right: 1rem;
	z-index: 90;
	appearance: none;
	border: none;
	background: none;
	display: none;
	align-items: center;
	font-family: var(--font3);
	font-size: 1.5rem;
	text-transform: uppercase;
	color: rgba(27, 27, 27, 0.4);
	padding: 0.5rem 2rem;
	mix-blend-mode: multiply;
}

#back-to-top svg {
	transform: rotate(90deg);
	width: 2.5rem;
	height: auto;
	margin-right: 1rem;
}

.register-btn path {
	transition: 0.3s stroke;
}

.register-btn:hover path {
	stroke: var(--color-pink);
	transition: 0.3s stroke;
}

.register-btn .path-text {
	transition: 0.3s fill;
}

.register-btn:hover .path-text {
	fill: var(--color-pink);
	stroke: none;
	transition: 0.3s fill;
}

.speaker-box {
	background-color: #fff;
	padding: 2rem;
	border-radius: var(--radius1);
	margin-left: 6rem;
	cursor: pointer;
}

.speaker-image {
	border-radius: var(--radius2);
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.speaker-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.speaker-company-logo {
	height: 50px;
	width: 100px;
	object-fit: contain;
	object-position: left;
}

.speaker-border {
	height: 4px;
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.speaker-box h6 {
	font-family: var(--font1);
	text-transform: none;
	letter-spacing: 0;
	font-size: 1.5rem;
}

.sticky-box {
	position: sticky;
	top: 3rem;
}

.sessions-list a {
	text-underline-offset: 5px;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	transition: 0.3s color;
}

.sessions-list a:hover {
	color: var(--color-pink);
	transition: 0.3s color;
}

.modal-body .social-icon {
	margin-left: -4px;
}

.register-btn, #register-form {
    display: none !important;
}

@media screen and (max-width: 767px) {
	html, body {
		max-width: 100vw;
		overflow-x: hidden;
	}
	
	h1 {
		font-size: 4rem;
		line-height: 4.2rem;
		letter-spacing: -0.04rem;
	}
	
	h2 {
		font-size: 3rem;
		line-height: 3.2rem;
		letter-spacing: -0.03rem;
	}
	
	h3 {
		font-size: 2.25rem;
		line-height: 2.4rem;
		letter-spacing: -0.02rem;
	}
	
	h4 {
		font-size: 2.2rem;
		line-height: 2.7rem;
		letter-spacing: -0.02rem;
	}
	
	p, ul li {
		font-size: 1.8rem;
		line-height: 2.3rem;
		letter-spacing: -0.02rem;
	}
	
	#masthead {
		height: 10rem;
	}
	
	.custom-logo {
		width: 10.4rem;
		margin-top: 1.2rem;
		margin-left: 0.9rem;
	}
	
	.fl-node-p7r5beduinak > .fl-row-content-wrap {
		background-image: url('https://3bigthings.studio/wp-content/uploads/2025/09/mobile-banner.svg');
		background-size: contain;
	}
	
	.fl-node-uzma7qlywvn9 p br,
	.fl-node-w95qpjre4doi p br,
	.fl-node-ifhpg7wkmblj h2 br {
		display: none;
	}
	
	.wave-1 {
		top: -45%;
		left: 45%;
	}
	
	.wave-2 {
		bottom: -35%;
		right: 65%;
	}
	
	.offering {
		padding: 3.5rem;
	}
	
	.offering-icon {
		width: 50px;
		margin-bottom: 4rem;
	}
	
	.offering-description, .offering-description p {
		font-size: 1.6rem;
		line-height: 2.2rem;
	}
	
	.works-list::before,
	.works-list::after {
		display: none;
	}
	
	.work {
		margin-bottom: 5rem;
	}
	
	.clients-list {
		display: flex;
		flex-wrap: wrap;
	}
	
	.client {
		width: calc(50% - 1rem);
	}
	
	.client-thumb {
		padding: 2.5rem 1rem 2.5rem 0;
	}
	
	.clients-list .client:nth-child(3) img,
	.clients-list .client:nth-child(4) img,
	.clients-list .client:nth-child(7) img {
		margin-left: 0;
	}
	
	.clients-list .client:nth-child(7) {
		order: 9;
		width: 100%;
		margin-top: 1rem;
	}
	
	.clients-list .client:nth-child(8) img {
		position: relative;
		top: 0;
		left: 0;
	}
	
	.testimonials-list {
		margin-left: -1.5rem;
		margin-right: -1.5rem;
		padding: 6rem 2rem;
	}
	
	.testimonials-list .slick-list {
		aspect-ratio: unset;
		background-position: center;
	}
	
	.testimonials-list .slick-dots {
		width: calc(100% - 4rem);
		bottom: 12px;
	}
	
	.testimonials-list .slick-dots li button:before {
		font-size: 8px;
		line-height: 11px;
		border: 1px solid #fff;
		width: 14px;
		height: 14px;
	}
	
	.testimonial h3 {
		font-size: 1.7rem;
		line-height: 2.2rem;
		letter-spacing: -0.02rem;
	}
	
	.testimonial-text {
		padding: 1rem;
	}
	
	.team-modal .modal-dialog {
		max-width: 100% !important;
	}
	
	.team-modal .modal-body {
		padding: 1.5rem;
	}
	
	.site-info {
		aspect-ratio: unset;
		background-image: none;
	}
	
	.site-info .row {
		position: unset;
	}
	
	.footer-links {
		padding: 2rem 0rem;
	}
	
	.second-footer {
		margin-left: 0rem;
	}
	
	.copy-text {
		margin-left: 0;
		padding: 2rem 0rem;
	}
	
	.copy-col {
		order: 3;
	}
	
	#toolkit-btn img,
	#contact-submit img {
		height: 8rem;
	}
	
	.form-sticky {
		position: unset;
		padding-right: 0;
	}
	
	#site-navigation {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 200;
		transform: translate(110%, 0);
		transition: 0.4s transform;
	}
	
	#site-navigation.show-this {
		transform: translate(0, 0);
		transition: 0.4s transform;
		transition-delay: 0.2s;
	}
	
	.menu-main-menu-container {
		height: 100%;
		background-color: var(--color-light-grey);
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	
	#menu-btn {
		height: 100%;
		width: 4rem;
		text-align: center;
		margin-top: 3rem;
		margin-right: 1rem;
	}
	
	#menu-close {
		position: absolute;
		top: 4.5rem;
		right: 2.8rem;
	}
	
	#mobile-logo {
		position: absolute;
		top: 2.5rem;
		left: 2.7rem;
		width: 10.4rem;
	}
	
	.main-navigation li a {
		font-family: var(--font2);
		font-size: 3.5rem;
		text-transform: none;
		padding: 1rem;
		line-height: 7rem;
	}
	
	#primary {
		filter: none;
		transition: 0.4s filter;
		transition-delay: 0.4s;
	}
	
	#primary.blurred {
		filter: blur(3px);
		transition: 0.4s filter;
	}
	
	.page-id-27 #menu-btn {
		opacity: 0;
	}
	
	.page-id-302 .entry-content {
		padding: 13rem 1.5rem;
	}
	
	.speaker-box {
		margin-left: 0;
	}
	
	.speaker-image {
		aspect-ratio: unset;
		height: 100%;
	}
	
	.sticky-box {
		position: unset;
	}
	
	.speaker-box h5 {
		font-size: 1.6rem;
		line-height: 2.2rem;
		margin-bottom: -0.5rem;
	}
	
	.speaker-box h6 {
		font-size: 1.2rem;
		line-height: 1.4rem;
		margin-top: 0.5rem;
	}
	
	.speaker-company-logo {
		height: 30px;
		width: 60px;
	}
}