@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* @import url('https://fonts.cdnfonts.com/css/nexa-bold'); */

@font-face {
	font-family: nexa;
	font-style: normal;
	font-weight: 300;
	src: local('Nexa'), url('fonts/NexaLight.woff') format('woff');
}

@font-face {
	font-family: nexa;
	font-style: normal;
	font-weight: 700;
	src: local('Nexa'), url('fonts/NexaBold.woff') format('woff');
}

@font-face {
	font-family: Franklin Gothic;
	font-style: book;
	font-weight: 400;
	src: local('Franklin Gothic'), url('fonts/FranklinGothicBook.woff') format('woff');
}

/* @font-face {
	font-family: Franklin Gothic;
	font-style: medium;
	font-weight: 500;
	src: local('Franklin Gothic'), url('fonts/FranklinGothic.woff') format('woff');
} */

@font-face {
	font-family: Franklin Gothic;
	font-style: demi;
	font-weight: 600;
	src: local('Franklin Gothic'), url('fonts/FranklinGothicDemi.woff') format('woff');
}

/* @font-face {
	font-family: Franklin Gothic;
	font-style: heavy;
	font-weight: 900;
	src: local('Franklin Gothic'), url('fonts/FranklinGothicHeavy.woff') format('woff');
} */

@font-face {
	font-family: Plain;
	font-style: regular;
	font-weight: 400;
	src: local('Plain'), url('fonts/Plain-Regular.woff2') format('woff2');
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar-track-piece {
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: #CCC;
	border-radius: 10px;
	border: 3px solid transparent;
	background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
	background-color: black;
}

header {
	height: 100svh;
	background: #333;
	color: #fff;
}

body {
	position: relative;
	font-size: 14px;
	font-family: 'Nexa', 'Montserrat', sans-serif;
	font-weight: 400;
	scroll-behavior: smooth;
}

body.loading {
	overflow: hidden;
}

section {
	padding-top: 2rem;
	margin-bottom: -2rem;
}

footer {
	margin-top: 2em;
}

h1 {
	font-size: 30px;
	font-weight: 700;
}

*[s-fade-in] {
	-webkit-transition: opacity 1s, transform 1s;
	-webkit-transition: -webkit-opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, transform 1s;
}

*[s-fade-in].pre-fade-in {
	opacity: 0;
	transform: translateY(50px);
}

.waiting-translation {
	opacity: 0.25 !important;
}

.begin-translation {
	transition: all 0.5s !important;
	opacity: 0 !important;
}

.end-translation {
	transition: all 0.5s !important;
}

body.c-cursor,
body.c-cursor * {
	/* overflow: hidden; */
	cursor: none;
}

div.c-cursor-cont {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 1600;
}

div.c-cursor-area {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
}

div.c-cursor {
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 16px;
	background-color: white;
	border: 1px solid black;
	/* transition: width 0.2s, height 0.2s, background-color 0.5s; */
	transition: width 0.2s, height 0.2s, background-color 0.5s;
	pointer-events: none;
}

div.c-cursor.light {
	background-color: white;
	border: none;
}

div.c-cursor.dark {
	background-color: black;
	border: none;
}

.loader {
	position: absolute;
	width: 100%;
	height: 100svh;
	display: flex;
	overflow: hidden;
	pointer-events: none;
	z-index: 100;
}

.loader.ignore {
	display: none;
}

.loader .slide {
	position: absolute;
	width: 200%;
	height: 100%;
	display: flex;
	transform: translateX(-50%);
	-webkit-transition: transform 3s cubic-bezier(0.5, 0, 0, 1);
	-webkit-transition: -webkit-transform 3s cubic-bezier(0.5, 0, 0, 1);
	transition: transform 3s cubic-bezier(0.5, 0, 0, 1);
}

.loader.loading .slide {
	transform: translateX(0%);
	pointer-events: all;
}

.loader .main {
	width: 100%;
	height: 100%;
	background: white;
	color: black;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.loader .reveal {
	width: 100%;
	height: 100%;
	background-color: transparent;
	-webkit-transition: background-color 3s;
	-webkit-transition: -webkit-background-color 3s;
	transition: background-color 3s;
}

.loader .reveal.opaque {
	background-color: black;
}

.loader .logo {
	position: absolute;
	display: flex;
	bottom: 5vmin;
	right: 10vmin;
	width: 5em;
	/* gap: 0.5em; */
	font-size: 16vmin;
	/* justify-content: center; */
}

#nav {
	-webkit-transition: background-color 0.5s;
	-webkit-transition: -webkit-background-color 0.5s;
	transition: background-color 0.5s;
}

#nav .navbar-brand {
	-webkit-transition: color 0.5s;
	-webkit-transition: -webkit-color 0.5s;
	transition: color 0.5s;
	font-size: initial;
}

#nav .navbar-nav {
	justify-content: space-between;
}

#nav .navbar-toggler {
	border: none;
	box-shadow: none;
}

#nav .navbar-toggler svg {
	stroke: black;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

#nav.navbar-dark .navbar-toggler svg {
	stroke: white;
}

#nav .navbar-toggler svg g:first-child {
	opacity: 1;
	-webkit-transition: opacity 0s 0.2s;
	-webkit-transition: -webkit-opacity 0s 0.2s;
	transition: opacity 0s 0.2s;
}

#nav .navbar-toggler svg g:first-child line {
	-webkit-transition: transform 0.2s 0.2s;
	-webkit-transition: -webkit-transform 0.2s 0.2s;
	transition: transform 0.2s 0.2s;
	transform: translateY(0px);
}

#nav .navbar-toggler svg g:last-child {
	opacity: 0;
	-webkit-transition: opacity 0s 0.2s;
	-webkit-transition: -webkit-opacity 0s 0.2s;
	transition: opacity 0s 0.2s;
}

#nav .navbar-toggler svg g:last-child line {
	-webkit-transition: transform 0.2s;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	transform: rotate(0deg);
	transform-origin: center;
}

#nav .navbar-toggler[aria-expanded="true"] svg g:first-child {
	opacity: 0;
}

#nav .navbar-toggler[aria-expanded="true"] svg g:first-child line {
	-webkit-transition: transform 0.2s;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#nav .navbar-toggler[aria-expanded="true"] svg g:first-child line:first-child {
	transform: translateY(7px);
}

#nav .navbar-toggler[aria-expanded="true"] svg g:first-child line:last-child {
	transform: translateY(-7px);
}

#nav .navbar-toggler[aria-expanded="true"] svg g:last-child {
	opacity: 1;
}

#nav .navbar-toggler[aria-expanded="true"] svg g:last-child line {
	-webkit-transition: transform 0.2s 0.2s;
	-webkit-transition: -webkit-transform 0.2s 0.2s;
	transition: transform 0.2s 0.2s;
}

#nav .navbar-toggler[aria-expanded="true"] svg g:last-child line:first-child {
	transform: rotate(45deg);
}

#nav .navbar-toggler[aria-expanded="true"] svg g:last-child line:last-child {
	transform: rotate(-45deg);
}

.navbar-dark .navbar-nav .nav-link {
	color: rgba(255, 255, 255, 1);
}

.navbar-dark .svg-logo {
	filter: invert();
}

.navbar-light .navbar-nav .nav-link {
	color: rgba(0, 0, 0, 1);
}

nav a.active,
nav a:hover {
	font-weight: 700;
}

header.hide-c-to-a .c-to-a {
	opacity: 0;
}

.c-to-a {
	position: fixed;
	display: flex;
	/* gap: 1em; */
	z-index: 1;
	cursor: pointer;
	color: white;
	background-color: rgba(37, 211, 102, 0.7);
	border-radius: 4em;
	padding: 0.8rem;
	margin: 6em 8em;
	border: none;
	text-align: center;
	text-decoration: none;
	align-items: center;
	opacity: 1;
	-webkit-transition: opacity 1s;
	-webkit-transition: -webkit-opacity 1s;
	transition: opacity 1s;
	bottom: 0;
	right: 0;
	width: fit-content;
}

.c-to-a:hover {
	background: rgba(37, 211, 102, 1);
}

.ripple {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 4em;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
}

.ripple_in {
	animation-name: ripple_in;
}

.ripple_out {
	animation-name: ripple_out;
}


@keyframes ripple_in {
	0% {
		box-shadow: 0 0 0 0 #25d36566;
	}

	60% {
		box-shadow: 0 0 0 1.5em #25D36600;
	}

	100% {
		box-shadow: 0 0 0 0 #25D36600;
	}
}


@keyframes ripple_out {
	0% {
		box-shadow: 0 0 0 0 #25D36666;
	}

	8% {
		box-shadow: 0 0 0 0 #25D36666;
	}

	92% {
		box-shadow: 0 0 0 2em #25D36600;
	}

	100% {
		box-shadow: 0 0 0 0 #25D36600;
	}
}

#video-carousel {
	z-index: 0;
	position: relative;
	align-items: center;
	justify-content: center;
}

header div.navbar-brand {
	z-index: 3;
	position: absolute;
	width: 40%;
	top: 20vh;
}

header .navbar-brand img {
	width: 100%;
}

header .navbar-brand .daa-title {
	font-size: 4vmin;
	/* letter-spacing: -0.2vw; */
	color: black;
	text-align: center;
}

video {
	margin: 0;
	padding: 0;
	object-fit: cover;
	position: relative;
	z-index: 1;
	height: 100svh;
	width: 100%;
	display: flex;
}

.paused {
	position: relative;
}

.paused::after {
	content: "";
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nNTBweCcgaGVpZ2h0PSc1MHB4JyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNCAyNCcgZmlsbD0nY3VycmVudENvbG9yJyBjb2xvcj0nI0ZGRic+PHBhdGggZD0nTTggNXYxNGwxMS03eic+PC9wYXRoPjwvc3ZnPg==");
	background-position: center;
	background-repeat: no-repeat;
	font-size: 32px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	color: white;
	/* background-color: rgba(0, 0, 0, 0.5); */
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bg-video {
	position: relative;
	display: flex;
	width: 100%;
	height: 100svh;
	justify-content: center;
	/* align-items: center; */
	z-index: 0;
}

.overlay {
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0);
	position: absolute;
	z-index: 2;
}

.overlay .cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#heroHeader .carousel-item {
	width: 100%;
	height: 100%;
}

#heroHeader .carousel-item .hero-project {
	position: relative;
	width: 100%;
	height: 100%;
}

#heroHeader .carousel-item .hero-project img {
	object-fit: cover;
}

#heroHeader .carousel-caption {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 0;
	background: transparent;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#heroHeader .carousel-caption.left {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
}

#heroHeader .carousel-caption.right {
	background: linear-gradient(-90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
}

#heroHeader .carousel-caption .caption-text {
	position: absolute;
	display: flex;
	flex-direction: column;
	color: white;
	text-transform: uppercase;
}

#heroHeader .carousel-caption.left .caption-text {
	text-align: left;
	/* left: 10vmin; */
	align-items: start;
}

#heroHeader .carousel-caption.right .caption-text {
	text-align: right;
	/* right: 10vmin; */
	align-items: end;
}

#heroHeader .carousel-caption .caption-text .xl .title {
	font-weight: normal;
	font-size: 3rem;
	margin-top: 0;
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--bs-heading-color);
}

#heroHeader .carousel-caption .caption-text .xl .subtitle {
	font-size: 1.5rem;
	margin-top: 0;
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--bs-heading-color);
}

#heroHeader .carousel-caption .caption-text a {
	font-weight: normal;
	background-color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	width: fit-content;
	height: fit-content;
	padding: 0.8rem 1rem 0.5rem 1rem;
	color: black;
}

#heroHeader .carousel-caption .caption-text a:hover {
	background-color: rgba(255, 255, 255, 1);
}

.carousel-control-prev,
.carousel-control-next {
	z-index: 3;
	width: 5%;
}

.row-highlight-black {
	background-color: black;
	color: white;
	padding-top: 0.25rem;
	box-shadow: -0.5rem 0 0 0 black, 0.5rem 0 0 0 black;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.main-quote {
	margin: 2em 0;
	line-height: 1;
	font-family: 'plain' !important;
	/*font-weight: bold;*/
	max-width: 75%;
	font-size: 2.6vmax;
}

#projects .img-fluid:hover {
	cursor: pointer;
	/* opacity: 0.7; */
}

#projects ul.credits {
	margin: 5em 2.5% 12em 2.5%;
	max-width: 45em;
}

#projects ul.credits li {
	list-style: none;
	color: #999;
	font-size: 1.4rem;
	font-family: 'Franklin Gothic';
}

#projects .nav-item {
	color: #999;
	line-height: 100%;
	padding: 0.25rem 0;
	border: 0;
	font-weight: 400;
	background: transparent;
}

#projects .active {
	font-weight: 700;
	border: 0;
}

#projects .submenu {
	display: block;
}

.cinematic-carousel .slide-cont {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.cinematic-carousel .slide-cont .img {
	width: 50%;
	height: 100%;
}

.cinematic-carousel .slide-cont .desc {
	width: 50%;
	height: 100%;
}

.carousel-playback-ctrl {
	position: absolute;
	right: 50%;
	bottom: 0;
	left: 50%;
	z-index: 3;
	display: flex;
	justify-content: center;
	padding: 0;
	width: min-content;
	margin-bottom: 1rem;
}

.carousel-playback-ctrl button {
	border: none;
	background: none;
	/*
	background-color: black;
	color: white;
	width: 2em;
	height: 2em;
	border-radius: 2em;
	*/
}

.accordion-button {
	font-size: 14px;
	color: #000;
	appearance: none;
	-webkit-appearance: none;
	border-radius: none;
	-webkit-border-radius: none;
}

.accordion-button:not(.collapsed) {
	color: #000000;
	background-color: transparent !important;
	background: transparent !important;
	-webkit-background: transparent !important;
	-o-background: transparent !important;
	-moz-background: transparent !important;
	-ms-background: transparent !important;
}

.accordion-button::after {
	width: 0.75rem;
	height: 0.75rem;
	background-size: 0.75rem;
}

.all-project {
	display: block;
	position: relative;
	height: 100%;
	width: 100%;
}

.all-project:hover img {
	filter: none;
}

.all-project:hover img.bw-img {
	opacity: 0;
}

.proj-cover {
	position: relative;
}

.proj-cover img {
	filter: grayscale();
	object-fit: cover;
	width: 100%;
	height: 100%;
	-webkit-transition: filter 1s;
	-webkit-transition: -webkit-filter 1s;
	transition: filter 1s;
}

.proj-cover img.bw-img {
	position: absolute;
}

.all-project .overlay-image {
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
	position: absolute;
	color: #fff;
	cursor: pointer;
	opacity: 0;
	z-index: 5;
	-webkit-transition: opacity 1s;
	-webkit-transition: -webkit-opacity 1s;
	transition: opacity 1s;
}

.all-project:hover .overlay-image {
	opacity: 1;
}

.people-pic {
	/* ADJUST THIS WHEN INSERTING / REMOVING NEW PICTURES */
	flex-basis: 20%;
}

#contact a,
#contact button {
	text-decoration: none !important;
	color: #000;
}

#contact a:hover,
#contact button:hover {
	font-weight: bold;
}

#contact .social img {
	width: 1em;
}

#contact .fs-l {
	/* same as bs fs-2 h2 */
	font-size: calc(1.325rem + .9vw) !important;
}

#contact .fs-m {
	/* same as bs fs-4 h4 */
	font-size: calc(1.275rem + .3vw) !important;
}

#contact .res-mt-l {
	margin-top: none;
}

#contact .mb-l {
	margin-bottom: 15%;
}

form div.wait-res {
	background-color: rgba(255, 255, 255, 0.75);
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	z-index: 100;
	pointer-events: all;
}

form div.wait-res.waiting {
	display: flex;
	flex-direction: column;
}

form div.wait-res.done {
	display: flex;
	flex-direction: column;
	background-color: rgba(255, 255, 255, 1);
}

.modal {
	padding-left: 0
}

.modal .col-lg-6 {
	display: flex;
	align-items: start;
}

.main-content-text {
	font-size: 1.6rem;
	font-family: 'Franklin Gothic', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.main-content-text.sm {
	font-size: 14px;
}

.main-content-text.lg {
	font-size: 2.2rem;
}

.main-content-text.xl {
	font-size: 3rem;
}

.project-content {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	margin: 2em 0;
}

.project-content h1.title {
	font-size: 3rem;
	font-weight: 400;
	font-family: 'Nexa', 'Montserrat', sans-serif;
	margin-bottom: 2em;
	padding: 0 2.5%;
}

.project-content>div {
	margin-bottom: 6rem;
	display: flex;
	flex-direction: column;
}

.project-content>div {
	margin-bottom: 6rem;
	display: flex;
	flex-direction: column;
}

.project-content img {
	width: 100%;
}

.project-content p {
	padding: 0 2em;
	min-width: 18em;
	z-index: 2;
}

.project-content p:first-child {
	margin-top: 2em;
}

.project-content p:last-child {
	margin-bottom: 0;
}

.project-content .left {
	align-self: flex-start;
	/* text-align: left; */
	max-width: 50%;
	padding: 0 2.5%;
}

.project-content .left.xs {
	max-width: 20%;
}

.project-content .left.sm {
	max-width: 33.33%;
}

.project-content .left.lg {
	max-width: 66.66%;
}

.project-content .left.xl {
	max-width: 90%;
}

.project-content .center {
	align-self: center;
	/* text-align: center; */
	max-width: 50%;
	/* min-height: 50vh; */
	/* margin-top: 4rem; */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2.5%;
}

.project-content .center.xs {
	max-width: 20%;
}

.project-content .center.sm {
	max-width: 33.33%;
}

.project-content .center.lg {
	max-width: 66.66%;
}

.project-content .center.xl {
	max-width: 80%;
}

.project-content .right {
	align-self: flex-end;
	/* text-align: right; */
	max-width: 50%;
	padding: 0 2.5%;
}

.project-content .right.xs {
	max-width: 20%;
}

.project-content .right.sm {
	max-width: 33.33%;
}

.project-content .right.lg {
	max-width: 66.66%;
}

.project-content .right.xl {
	max-width: 90%;
}

.project-content .full {
	align-self: center;
	text-align: center;
	width: 100%;
	padding: 0 2.5%;
}

.project-content .extend {
	align-self: center;
	text-align: center;
	width: 100%;
	padding: 0;
}

.project-content .two-cont {
	align-self: center;
	/* text-align: center; */
	width: 100%;
	display: grid;
	grid-template-areas: "a b";
	grid-template-columns: 1fr 1fr;
	gap: 4em;
	padding: 0 2.5%;
}

.project-content .two-cont>div {
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;
}

.project-content .two-cont .two-left {
	grid-area: a;
}

.project-content .two-cont .two-right {
	grid-area: b;
}

/* .project-content .two-cont p {
	padding: 2em;
} */

.project-content .html {
	align-self: center;
	/* text-align: center; */
	width: 100%;
}

.tri-grid-responsive {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	/* grid-template-rows: 1fr 1fr 1fr; */
	/* gap: 10vw; */
	margin-bottom: 4em;
}

@media (max-width: 991px) {

	#nav .container {
		justify-content: end;
	}

	#nav .navbar-nav {
		/* min-height: 100svh; */
		justify-content: start;
	}

	.c-to-a {
		font-size: 10px;
		/* padding: 0.5rem 0.5rem 0.25rem 0.5rem; */
	}

	#heroHeader .carousel-caption {
		font-size: 10px;
		height: 50%;
	}

	#heroHeader .carousel-caption.left {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	}

	#heroHeader .carousel-caption.right {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	}

	#heroHeader .carousel-caption .caption-text {
		/* padding: 4em; */
		padding-top: 4em;
		height: 75% !important;
		justify-content: flex-start !important;
	}

	#heroHeader .carousel-caption .caption-text a {
		padding: 0.5rem 0.5rem 0.25rem 0.5rem;
	}

	#heroHeader .carousel-caption .caption-text .xl .title {
		font-size: 1.5rem;
	}

	#heroHeader .carousel-caption .caption-text .xl .subtitle {
		font-size: 0.8rem;
	}

	.main-quote {
		margin: 0 !important;
		font-size: 2rem !important;
	}

	.cinematic-carousel .carousel-inner {
		aspect-ratio: unset !important;
	}

	#contact .fs-l {
		/* same as bs fs-4 h4 */
		font-size: calc(1.275rem + .3vw) !important;
	}

	#contact .fs-m {
		/* same as bs fs-6 h6 */
		font-size: 1rem !important;
	}

	#contact .res-mt-l {
		margin-top: 10%;
	}

	#contact .mb-l {
		margin-bottom: 10%;
	}

	.main-content-text {
		font-size: 1.2rem;
	}

	.project-content h1.title {
		font-size: 2rem;
	}

	#projects ul.credits li {
		font-size: 1rem;
	}

	.project-content p {
		min-width: auto;
	}

	.project-content .left,
	.project-content .left.xs,
	.project-content .left.sm,
	.project-content .left.lg,
	.project-content .left.xl {
		max-width: 90%;
	}

	.project-content .center,
	.project-content .center.xs,
	.project-content .center.sm,
	.project-content .center.lg,
	.project-content .center.xl {
		max-width: 90%;
	}

	.project-content .right,
	.project-content .right.xs,
	.project-content .right.sm,
	.project-content .right.lg,
	.project-content .right.xl {
		max-width: 90%;
	}

	.ovrd-up {
		margin-top: 0 !important;
	}

	.ovrd-left {
		margin-left: 0 !important;
	}

	.ovrd-min-height {
		min-height: auto !important;
	}

	.tri-grid-responsive {
		grid-template-columns: 1fr 1fr;
		/* grid-template-rows: 1fr 1fr; */
	}
}

@media (max-width: 767px) {
	.people-pic {
		flex-basis: 50%;
	}

	.cinematic-carousel .slide-cont {
		flex-direction: column;
	}

	.cinematic-carousel .slide-cont .img {
		width: 100%;
	}

	.cinematic-carousel .slide-cont .desc {
		width: 100%;
	}
}

@media (max-width: 575px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 98.5%;
	}

	header div.navbar-brand {
		width: 60%;
		margin-right: 0;
	}

	#nav {
		font-size: 20px;
	}

	#nav ul li {
		text-align: left;
	}

	#nav.navbar-dark:has(button.navbar-toggler[aria-expanded="true"]) {
		background-color: rgba(0, 0, 0, 1) !important;
		-webkit-transition: background-color 0s;
		-webkit-transition: -webkit-background-color 0s;
		transition: background-color 0s;
	}

	#image-carousel {
		z-index: 0;
		position: relative;
		align-items: center;
		justify-content: center;
		height: 100svh;
		width: 100%;
	}

	.bg-video {
		background: url('../../assets/01.jpg') no-repeat center;
	}

	.c-to-a {
		right: 0;
		margin: 4em;
	}

	.project-content .two-cont {
		align-self: center;
		/* text-align: center; */
		width: 100%;
		display: grid;
		grid-template-areas: "a" "b";
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 4em;
	}

	.tri-grid-responsive {
		grid-template-columns: 1fr;
		/* grid-template-rows: 1fr; */
	}
}

/* BOOTSTRAP OVERRIDES */

@media (min-width: 1400px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 90%;
	}
}