﻿:root {
	--headings: #383c50;
	--body-text: rgba(56,60,80,.8);
	--dark-grey: #1c1c1c;
	--dark-blue: #23252d;
	--light-grey: #eef1f2;
}

body {
	font-family: pt-serif, serif;
	font-weight: 400;
	font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
	font-family: brandon-grotesque, sans-serif;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	color: var(--headings);
}

p {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--body-text);
}

a {
	color: inherit;
	text-decoration: none;
}

	a:hover, a:focus {
		color: #23527c;
	}

.btn {
	font-family: brandon-grotesque, sans-serif;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	border-radius: 0;
}

.btn-primary {
	background: var(--dark-blue);
	border-color: var(--dark-blue);
}

.bg-dark-grey {
	background: var(--dark-grey);
}
.bg-light-grey {
	background: var(--light-grey);
}

.header-sticky {
	background-color: #FFF;
	transition: background-color .2s ease;
}

.nav-link {
	padding-right: .75rem;
	padding-left: .75rem;
	font-family: brandon-grotesque, sans-serif;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	font-size: .8rem;
	letter-spacing: 2.6px;
	line-height: 1;
	color: #FFF;
}

.nav-link:focus, .nav-link:hover {
	color: rgba(255,255,255,.7);
}


.header-sticky .nav-link {
	color: #191919;
	transition: color .2s ease;
}


.header-sticky .nav-link:focus, .header-sticky .nav-link:hover {
	color: rgba(25,25,25,.7);
	transition: color .2s ease;
}

.logo {
	max-width: 175px;
}

	.logo.rgb, .header-sticky .logo {
		opacity: 0;
		display: none;
		transition: opacity .2s ease, color .2s ease;
	}

		.header-sticky .logo.rgb {
			opacity: 1;
			display: block;
			transition: opacity .2s ease, color .2s ease;
		}

.card {
	border-radius: 0;
	border: 0;
	background: transparent;
}

.card-body {
	padding-right: 0;
	padding-left: 0;
}

.block-hero-title {
	position: relative;
	min-height: 534px;
	background-image: url('images/Plymouth-Graduation-Aerial-Shot-v2-red2.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

	.block-hero-title::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(17,17,17,.3);
		z-index: 0;
	}

	.block-hero-title h1 {
		font-size: 3rem;
		color: #FFF;
	}

	.block-hero-title p {
		font-family: brandon-grotesque, sans-serif;
		font-weight: 700;
		font-style: normal;
		color: #fff;
		letter-spacing: 1.2px;
	}

@media screen and (min-width:992px) {
	.block-hero-title h1 {
		font-size: 5rem;
	}

	.block-hero-title p {

	}
}

.container-title {
	position: relative;
	z-index: 0;
}

	.container-title.products::after {
		content: "";
		position: absolute;
		display: block;
		top: 0;
		right: 0;
		bottom: 65%;
		left: 0;
		background-color: var(--dark-grey);
		z-index: -1;
	}

	.container-title.container-fluid {
		background-color: var(--dark-grey);
	}

	.container-title h2, .container-title h6 {
		color: #FFF;
	}

	.container-title h2 {
		margin-bottom: 3rem;
		font-size: 3rem;
	}
	@media (min-width: 992px){
		.container-title h2 {
			font-size: 4rem;
		}
	}

.square-image-container {
	display: flex;
	justify-content: center;
	align-content: center;
	position: relative;
	overflow: hidden;
}

	.square-image-container::after {
		content: "";
		display: block;
		padding-bottom: 100%;
	}

	.square-image-container img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.square-image-container div {
		opacity: 0;
		position: absolute;
		bottom: 0;
		left: 0;
		color: #FFF;
		z-index: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		transition: opacity 0.5s ease-in-out;
		height: 100%;
		width: 100%;
		padding: 15px;
	}

	.square-image-container:hover div, .square-image-container:active div, .square-image-container.active div {
		opacity: 1;
		background: rgba(0,0,0,0.75);
	}

	.square-image-container div span {
		border-bottom: 2px solid #fff;
		font-family: brandon-grotesque, sans-serif;
		font-weight: 700;
		font-style: normal;
		text-transform: uppercase;
		letter-spacing: 3px;
		line-height: 1.8;
		color: #fff;
	}

	.image-container-16x9 {
		display: flex;
		justify-content: center;
		align-content: center;
		position: relative;
		overflow: hidden;
	}

	.image-container-16x9::after {
		content: "";
		display: block;
		padding-top: 56.25%;
	}

	.image-container-16x9 img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}


	.block-gallery .square-image-container small {
		position: static;
		background: none;
	}

.block-gallery .square-image-container div {
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	z-index: 1;
	display: flex;
	justify-content: end;
	flex-direction: column;
	transition: opacity 0.3s ease-in-out;
	height: 100%;
	width: 100%;
	padding: 15px;
}

.block-gallery .square-image-container:hover div, .block-gallery .square-image-container:active div, .block-gallery .square-image-container.active div {
	opacity: 1;
	background: rgba(0,0,0,0.5);
}

#galleryModal .modal-dialog.image .modal-content {
	border: 0;
	border-radius: 0;
	box-shadow: 0 7px 14px 0 rgba(0, 0, 0, 0.7), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
}

	#galleryModal .modal-dialog.image .modal-content .caption {
		position: absolute;
		bottom: -3rem;
		width: 100%;
		text-align: center;
	}

		#galleryModal .modal-dialog.image .modal-content .caption span {
			background: rgba(0,0,0,0.7);
			color: #FFF;
			padding: 0.25rem 1rem;
			border-radius: 25px;
			border: 3px solid #FFF;
		}

#galleryModal a.close.image {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	opacity: 1;
	color: #FFF;
	background: #000;
	border-radius: 50%;
	border: 3px solid #FFF;
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.75);
	z-index: 99;
	padding: 0 5px;
	cursor: pointer;
	line-height: 1;
	text-align: center;
}

.block-gallery a h4,
.block-gallery a h2,
.block-gallery a:hover h4,
.block-gallery a:hover h2,
.block-gallery a:active h4,
.block-gallery a:active h2,
.block-gallery a:focus h4,
.block-gallery a:focus h2 {
	color: #FFF;
}

#galleryModal a.close span {
	display: block;
	text-align: center;
	line-height: 20px;
	font-size: 1.5rem;
}

#galleryModal h4, #galleryModal h2 {
	color: #FFF;
}

.carousel-logos {
	padding: 0 2rem;
}

.carousel-logo img {
	max-width: 175px;
	margin: 0 auto;
}


.carousel-testimonial {
	margin-right: 1rem;
	margin-left: 1rem;
	position: relative;
	/* max-width: 33.33%; */
}

@media (min-width: 992px) {
	.carousel-testimonials {
		margin-right: -1rem;
		margin-left: -1rem;
	}
}


	.carousel-testimonial .description {
		position: relative;
		margin-bottom: 3rem;
		padding: 3rem 2rem 2rem;
		background: #FFF;
		box-shadow: 6.5px 11.3px 16.6px 1.4px rgba(40,43,49,.13);
	}

		.carousel-testimonial .description::before {
			content: "";
			position: absolute;
			top: 100%;
			left: 0;
			border-right: 21px solid rgba(29,29,29,.7);
			border-bottom: 30px solid transparent;
		}

	.carousel-testimonial .credit img {
		width: 75px;
		height: 75px;
	}

	.carousel-testimonial .credit .rounded-circle {
		height: 75px;
		width: 75px;
		text-align: center;
		display: inline-block;
	}

	.carousel-testimonial .credit .rounded-circle span {
		position: relative;
		top: 10px;
		font-size: 2rem;
	}

.block-call-to-action p {
	font-size: 1.5rem;
}

.block-logo-grid .col {
	border: 1px solid rgba(0,0,0,.1);
}

.block-logo-grid .col:nth-child(2),
.block-logo-grid .col:nth-child(4) {
	border-left: 0;
}

.block-logo-grid .col:nth-child(3),
.block-logo-grid .col:nth-child(4) {
	border-top: 0;
}

.block-logo-grid .col:nth-child(4n+5),
.block-logo-grid .col:nth-child(4n+6),
.block-logo-grid .col:nth-child(4n+7),
.block-logo-grid .col:nth-child(4n+8) {
	border-top: 0;
}

.block-logo-grid .col:nth-child(4n+5),
.block-logo-grid .col:nth-child(4n+7) {
	border-right: 0;
}



@media screen and (min-width:768px) {
	.block-logo-grid .col:nth-child(2),
	.block-logo-grid .col:nth-child(3),
	.block-logo-grid .col:nth-child(4) {
		border-left: 0;
	}

	.block-logo-grid .col:nth-child(3),
	.block-logo-grid .col:nth-child(4),
	.block-logo-grid .col:nth-child(4n+5) {
		border-top: 1px solid rgba(0,0,0,.1);
	}

	.block-logo-grid .col:nth-child(4n+5),
	.block-logo-grid .col:nth-child(4n+7) {
		border-right: 1px solid rgba(0,0,0,.1);
	}

	.block-logo-grid .col:nth-child(4n+5) {
		border-top: 0
	}

	.block-logo-grid .col:nth-child(4n+6),
	.block-logo-grid .col:nth-child(4n+7),
	.block-logo-grid .col:nth-child(4n+8) {
		border-top: 0;
		border-left: 0
	}
}

.block-faq {
	background: var(--light-grey);
}

.block-faq .accordion-item {
	border: none;
	box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 rgba(0, 0, 0, 0.15);
}

.block-faq .accordion-item:last-of-type {
	border-radius: 0;
}

.block-faq .accordion-item, .block-faq .accordion-button {
	background-color: transparent;
	font-size: 1.25rem;
	color: #000;
	
}

.block-faq .accordion-button {
	padding-top: 1.75rem;
	padding-bottom: 1.75rem;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	box-shadow: none;
}

.block-faq .accordion-button:not(.collapsed) {
	background-color: transparent;
	color: #000;
}

.block-faq p {
	font-size: 1.125rem;
	color: #000;
}

.block-process-arrows {
	background: var(--light-grey);
}

.process-arrow {
	position: relative;
}

.process-arrow-mobile {
	margin: 0 auto;
	padding: 1rem;
	background: var(--dark-blue);
	text-align: center;
}

	.process-arrow-mobile i {
		font-size: 2rem;
		color: #FFF;
	}

@media (min-width: 1200px) {
	.process-arrow-mobile {
		display: none;
	}

	.process-arrow::after {
		content: '\f054';
		font-family: "Font Awesome 7 Free";
		font-weight: 900;
		color: #FFF;
		right: -10%;
		top: 30%;
		position: absolute;
		font-size: 2rem;
		z-index: 99;
		line-height: 1;
		background: var(--dark-blue);
		padding: 1.5rem;
	}
}

.process-arrow:last-child:after {
	display: none;
}

.process-arrow .fa-solid {
	padding: 2rem 0;
	font-size: 4.5rem;
}

.process-arrow .card-body {
	padding: 1.25rem 1.75rem;
	background: #FFF;
}

.process-arrow .card-body p {
	text-align: center;
}

.process-arrow .card-body p:last-child {
	margin-bottom: 0;
}

.process-arrow h4.card-title {
	font-size: 1.125rem;
}

footer {
	padding: 4rem 0;
	background: var(--dark-blue);
	color: #FFF;
}

	footer h5, footer p {
		color: #FFF;
	}

	footer p {
		font-size: 1.25rem;
	} 

	footer .fa-stack {
		color: var(--light-grey);
	}

	footer a:hover, footer a:hover .fa-stack {
		color: rgba(255,255,255,.5);
	}

	footer .fa-stack-1x {
		color: var(--dark-blue);
	}
.block-carousel figure {
	width: 100%;
	height: 100%;
}

	.block-carousel figure img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}

.block-divider hr {
	border-color: transparent;
}						