/* Table of Contents */
/*
	1. Global Styling
		
		1.1. Sidebar Menu Styling
		
		1.2. Footer Styling
	
	2. Home Page Styling
	
		2.1. Home Page Navigation bar Styling

		2.2. Philosophy Page Styling
	
		2.3. Team Page Styling
		
		2.4. Portfolio Page Styling
		
		2.5. Contact Page Styling
	
	3. Packages Page Styling
	
	4. Services Page Styling
	
	5. Testimonials Page Styling	
	
	6. FAQ Page Styling	
	
	6. 404 Page Styling
*/		

/* Global Styling */

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

:root {
	--branding-color-1: #223057;
	--branding-color-2: #9ca1b0;
}

html {
	scroll-behavior: smooth;
}

body {
	background: black;
	margin: 0;
	padding: 0;
	font-family: Font-Body;
	font-size: 1em;
	text-align: left;
	color: #ffffff;
	font-size: 16px;
}

.body-alternate {
	background: white;
	color: var(--branding-color-1);
}

@font-face {
	font-family: Font-Header;
	src: url(Fonts/Larke.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: Font-Header;
	src: url(Fonts/Larke_Bold.ttf);
	font-weight: bold;
	font-style: normal;
	text-transform: uppercase;
}

@font-face {
	font-family: Font-Body;
	src: url(Fonts/Montserrat-Light.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: Font-Body;
	src: url(Fonts/Montserrat-Medium.otf);
	font-weight: bold;
	font-style: normal;
}

h1 {
	font-family: Font-Header;
	font-size: 6em;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: normal;
	display: block;
	margin: 3rem;
	text-align: center;
	z-index: 2;
}

h2 {
	font-family: Font-Header;
	font-size: 6em;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: normal;
	display: block;
}

h3 {
	font-family: Font-Header;
	font-size: 5em;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-align: center;
	color: var(--branding-color-1);
	display: inline;
	font-weight: normal;
}

h4 {
	font-family: Font-Header;
	font-size: 5em;
	text-align: center;
	color: #ffffff;
	display: inline;
	font-weight: normal;
	text-transform: uppercase;
}

h5 {
	font-family: Font-Header;
	font-size: 5em;
	text-align: center;
	color: #ffffff;
	display: inline;
	font-weight: normal;
}

h6 {
	font-family: Font-Header;
	font-size: 5em;
	text-align: center;
	color: var(--branding-color-1);
	text-transform: uppercase;
	display: inline;
	font-weight: normal;
}

.branded-heading .slash::before {
  content: " / ";
  margin: 0;
}

p,
label,
input,
textarea {
	font-size: 2em;
	font-family: Font-Body;
}

sup {
	font-size: 0.5em;
}

b {
	font-size: 2em;
	font-family: Font-Body;
	text-transform: none;
	display: inline;
	font-weight: bold;
}

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

a:visited {
	color: white;
}

a:active {
	color: var(--branding-color-2);
}

.btn {
	cursor: pointer;
	font-family: Font-Body;
	text-align: center;
	text-transform: uppercase;
	margin: 0;
	line-height: 0;
	font-size: 3em;
	position: relative;
	background: none;
	border: 3px solid #ffffff;
	z-index: 1;
	padding: 1em 0.75em 1em 0.75em;
}

.btn::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--branding-color-2);
	z-index: -1;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 250ms ease-in;
}

.btn:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.logo-large-center {
	width: 600px;
	height: auto;
	margin-top: 10vh;
	z-index: 2;
}

@media screen and (min-width: 1024px) {

body {
	font-size: 10px;
}

h3 {
	font-size: 3em;
}

h4 {
	font-size: 3em;
}

p,
label,
input,
textarea {
	font-size: 2em;
}

.btn {
	font-size: 2em;
	padding: 1.2em 1.5em 1.2em 1.5em;
}

.logo-large-center {
	width: 400px;
	height: auto;
}

}

/* Navigation Header Styling */

header {
	display: grid;
	grid-template-columns: 1fr 5fr;
}

#header-1,
#header-2 {
	width: 100%;
	height: 4em;
	position: fixed;
	top: 0;
	right: 0;
	font-family: FontA;
	font-size: 2em;
	text-align: center;
	z-index: +9999;
	transition: 0.5s;
}

#header-1 {
	background: var(--branding-color-1);
}

#header-2 {
	background-color: #ffffff;
}

.header-logo {
	position: absolute;
	top: 20%;
	left: 2em;
	height: 60%;
	width: auto;
}

.header-logo--white {
	filter: drop-shadow(2px 2px 0.1px var(--branding-color-1));
}

.header-toggle {
	display: none;
}

.header-toggle:checked ~ nav {
	transform: scale(1,1);
}

.header-toggle:checked ~ nav a {
	opacity: 1;
	transition: opacity 250ms ease-in-out 300ms;
}

.label--header-toggle {
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	margin-right: 1em;
	display: flex;
	align-items: center;
	grid-column: 1;
	z-index: 1000;
	cursor: pointer;
}

.label--header-toggle span,
.label--header-toggle span::before,
.label--header-toggle span::after {
	display: block;
	background: white;
	height: 0.13em;
	border-radius: 0em;
	width: 2em;
	content: ' ';
	box-shadow: 2px 2px 0.1px var(--branding-color-1);
}

.label--header-toggle span {
	position: relative;
	transition: background 125ms ease-in-out 200ms;
}

.label--header-toggle span::before{
	bottom: 0.45em;
	position: absolute;
	transition: transform 125ms ease-in-out 0ms;
	transform-origin: right;
}

.label--header-toggle span::after {
	top: 0.45em;
	position: absolute;
	transition: transform 125ms ease-in-out 0ms;
	transform-origin: right;
}

.header-toggle:checked ~ .label--header-toggle span {
	background: none;
	transition: background 125ms ease-in-out 0ms;
}

.header-toggle:checked ~ .label--header-toggle span::before {
	box-shadow: none;
	transform: rotate(-45deg) scaleX(0.64);
	transform-origin: right;
	transition: transform 125ms ease-in-out 200ms;
}

.header-toggle:checked ~ .label--header-toggle span::after {
	box-shadow: none;
	transform: rotate(45deg) scaleX(0.64);
	transform-origin: right;
	transition: transform 125ms ease-in-out 200ms;
}

nav {
	width: 100%;
	position: absolute;
	text-align: right;
	top: 0;
	left: 0;
	background: var(--branding-color-1);
	transform: scale(1, 0);
	transform-origin: top;
	transition: transform 400ms ease-in-out;
	z-index: +999;
}

nav ul {
	margin-top: 4em;
	padding: 0;
	list-style: none;
}

nav li {
	margin: 2em;
}

nav a {
	font-family: Font-Header;
	text-decoration: none;
	font-size: 4rem;
	opacity: 0;
	transition: opacity 150ms ease-in-out;
	color: white;
}

nav a:visited {
	color: white;
}

nav a:hover {
	color: white;
}

nav a:active {
	color: white;
}

.div-navigation {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	width: 83.333%;
	height: 8em;
	padding: 0 0 0 0;
	display: grid;
	grid-template-columns: auto;
	background: none;
	align-items: center;
}

.navigation-icon {
	width: 5em;
	height: auto;
	visibility: hidden;
}

.navigation-a,
.navigation-b,
.navigation-c,
.navigation-d,
.navigation-e {
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0 0 10px 0;
	display: flex;
	align-items: center;
	background: var(--branding-color-1);
	justify-content: center;
}

.navigation-a {
	grid-column: 1;
}

.navigation-b {
	grid-column: 2;
}

.navigation-c {
	grid-column: 3;
}

.navigation-d {
	grid-column: 4;
}

.navigation-e {
	grid-column: 5;
}

.navigation-a-text,
.navigation-b-text,
.navigation-c-text,
.navigation-d-text,
.navigation-e-text {
	display:none;
}

.div-navigation-arrow {
	display: none;
}

.chevron {
	position: relative;
	text-align: center;
    height: 50px;
    width: 150px;
    margin: 50px 0;
    visibility: hidden;
}
    
.chevron:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 50%;
	border-top: 5px solid #ffffff;
	border-bottom: 5px solid #ffffff;
	transform: skew(0deg, 30deg);
	visibility: visible;
    z-index: 1;
}
   
.chevron:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50%;
	border-top: 5px solid #ffffff;
	border-bottom: 5px solid #ffffff;
	transform: skew(0deg, -30deg);
	visibility: visible;
    z-index: 1;
}

@media screen and (min-width: 1024px) {

#header-1 {
	background: none;
}

#header-1,
#header-2 {
	height: 5em;
}

.header-logo {
	top: 35%;
	height: 30%;
}

.label--header-toggle {
	margin-right: 1em;
}

.label--header-toggle span,
.label--header-toggle span::before,
.label--header-toggle span::after {
	height: 0.1em;
	width: 1.5em;
	margin-right: 0;
}

.label--header-toggle span::before{
	bottom: 0.35em;
}

.label--header-toggle span::after {
	top: 0.35em;
}

.header-toggle:checked ~ .label--header-toggle span::before {
	transform: rotate(-45deg) scaleX(0.65);
}

.header-toggle:checked ~ .label--header-toggle span::after {
	transform: rotate(45deg) scaleX(0.65);
}

nav ul {
	margin-top: 4em;
}

nav li {
	margin: 1em;
}

nav a {
	color: var(--branding-color-2);
	font-size: 2rem;
	margin: 0;
}

nav a:visited {
	color: var(--branding-color-2);
}

nav a:hover {
	color: white;
}

nav a:active {
	color: white;
}

.chevron {
	position: absolute;
    height: 0;
    width: 0;
}
    
.chevron:before {
	height: 0;
	width: 0;
	visibility: hidden;
}
   
.chevron:after {
	height: 0;
	width: 0;
	visibility: hidden;
}

}

/* Home Page Styling */

.sct-main {
	width: 100%;
	height: 100%;
	background-image: url('Images/background1-mobile.jpg');
    background-size: auto 100%;
	background-position: center;
    background-repeat: no-repeat;
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

.div-main-mask {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(13, 19, 34, 0.4);
	z-index: 1;
    pointer-events:none;
}

.logo-wrapper {
	margin: 1em 0 0 0;
	padding: 0;
	display: inline;
}

.div-main-text {
	z-index: 2;
}

.div-main-btn {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	z-index: 99;
	grid-gap: 5em;
}

.btn--main {
	padding: 1.2em 1.5em 1.2em 1.5em;
	clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
	background: var(--branding-color-1);
	border: none;
	z-index: 0;
	color: #ffffff;
	margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {

.sct-main {
    background-size: 200% auto;
}

}

/* Services & Philosophy Section Styling */

.h3-main2 {
	color: var(--branding-color-1);
}

.sct-main2 {
	width: 100%;
	height: 200vh;
	background-image: url('Images/background2.jpg');
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
	position: relative;
}

.div-main2-content {
	width: 100%;
	height: 200vh;
	background: var(--branding-color-1);
	position: absolute;
	top: 0;
	left: 0;
	clip-path: polygon(0 0, 90% 0, 5% 100%, 0 100%);
	padding: 4em 40vw 4em 10vw;
	color: #ffffff;
}

.div-main2-content-btn {
	position: absolute;
	width: 100%;
	top: 80vh;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.btn__main2 {
	color: white;
}

.div-main2-img-text {
	width: 60vw;
	height: auto;
	position: absolute;
	top: 100vh;
	right: 0;
	padding-right: 4em;
	text-align: right;
	color: #ffffff;
	z-index: 1;
}

.div-main2-img-btn {
	position: absolute;
	width: 100%;
	top: 180vh;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 1024px) {

.div-main2-content {
	padding-right: 50vw;
}

.div-main2-content-btn {
	width: 60vw;
}

.div-main2-img-text {
	width: 50vw;
}

.div-main2-img-btn {
	width: 60vw;
	right: 0;
}

}

/* Process Page Styling */

.sct-process {
	width: 100%;
	min-height: auto;
	padding: 5%;
	background: #ffffff;
	text-align: center;
	color: var(--branding-color-1);
}

.div-process-step {
	width: 90%;
	margin: 0 5% 2% 5%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	text-align: center;
	justify-content: center;
}

.h-process-step {
	font-size: 3em;
	display: inline-block;
	margin: 0.5em 0 0 0;
}

.p-process-step {
	font-size: 2em;
	margin: 0.5em;
}

.p-process-step-text {
	font-size: 2em;
	margin: 0.5em;
	opacity: 0;
	text-align: center;
	transition: 250ms ease-out;
	color: white;
}

.div-process-step-icon {
	width: 100%;
	height: auto;
	margin-bottom: 20%;
	color: var(--branding-color-1);
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

.img-process-step-icon 	{
	position: relative;
	width: 12em;
	margin-left: 50%;
	transform: translateX(-50%);
	height: auto;
	display: block;
}

.gif-process-step-icon {
	position: absolute;
	width: 12em;
	margin-left: 50%;
	transform: translateX(-50%);
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	display: block;
}

.div-process-step-text {
	position: absolute;
	top: 18em;
	left: 5%;
	width: 90%;
	height: 9em;
	padding: 1em 10%;
	background: var(--branding-color-1);
	transform: translate(-50%, 0);
	border-right: 3px solid var(--branding-color-1);
	transition: 250ms ease-out 125ms;
	clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
	opacity: 0;
	z-index: 99;
}

.btn--process {
	border-color: var(--branding-color-1);
	color: var(--branding-color-1);
}

@media screen and (min-width: 1024px) {

.div-process-step {
	grid-template-columns: 1fr 1fr 1fr;
}

.div-process-step-icon:hover .gif-process-step-icon {
	opacity: 1;
}

.div-process-step-icon:hover .div-process-step-text {
	display: block;
	text-align: left;
	transform: scale(1,1);
	transform-origin: 0 0;
	transition: 250ms ease-in-out;
	opacity: 1;
}

.div-process-step-icon:hover .p-process-step-text {
	opacity: 1;
	transition: 250ms ease-out 125ms;
}


.div-process-step-icon:hover::after {
	width: auto;
	height: 100%;
	top: 20%;
	left: 50%;
	transform: scale(1, 1);
	transition: 0.5s;
	visibility: visible;
	margin: 1em;
}

}

/* Contact Page Styling */

.sct-contact {
	width: 100%;
	padding: 5%;
	background: var(--branding-color-1);
	text-align: center;
	color: #ffffff;
}

.form-contact {
	width: 100%;
	padding: 0 10%;
	text-align: left;
}

.input {
	width: 100%;
	padding: 0.5em 0.5em;
}

.input--contact {
	height: 10em;
}

.checkbox {
	width: 1em;
	height: 1em;
	vertical-align: top;
}

.span-contact-btn {
	display: block;
	width: 100%;
	text-align: center;
}

.btn__contact {
	color: #ffffff;
	margin-top: 1.5em;
}

.img-contact-social {
	width: 70px;
	height: auto;
	margin: 20px 50px;
}

.contact-copyright {
	display: inline-block;
}

@media screen and (min-width: 1024px) {

.img-contact-social {
	width: 40px;
	margin: 10px 20px;
}

.contact-copyright {
	display: none;
}

}

/* Packages Page Styling */

.div-packages-title {
	padding: 3em 0 0 0;
}

.div-packages-main {
	display: grid;
	grid-template-rows: repeat(auto-fit, minmax(300px, 1fr));
	align-items: flex-start;
	justify-content: center;
	grid-gap: 50px;
	width: 100%;
	height: auto;
	padding: 0 5%;
	margin-bottom: 100px;
}

.div-packages-main-package {
	height: auto;
	position: relative;
	padding: 7em;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
}

.div-packages-main-package:nth-of-type(1) {
	background: #9ca1b0;
}

.div-packages-main-package:nth-of-type(2) {
	background: #4e5978
}

.div-packages-main-package:nth-of-type(3) {
	background: var(--branding-color-1);
}

.div-packages-main-package-text {
	color: white;
	font-size: 2em;
}

.div-packages-main-package-text-price {
	font-size: 5em;
	text-align: right;
	color: white;
	margin: 0 0 1em 0;
}

.div-packages-main-package-name {
	width: 500px;
	height: 250px;
	position: absolute;
	clip-path: polygon(50% 0, 50% 0, 100% 100%, 0 100%);
	transform:  translate(-150px, -255px) rotate(-45deg);
	transform-origin: bottom right;
	top: 0;
	left: 0;
	background: white;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.div-packages-main-package-name-text {
	margin-bottom: 0.2em;
	font-size: 4em;
}

.div-packages-main-package-btn {
	text-align: center;
}

.btn__packages {
	color: white;
}

.btn__packages::after {
	display: none;
}

@media screen and (min-width: 1024px) {

.div-packages-main {
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.div-packages-main-package {
	padding: 5em;
	box-shadow: 2px 2px 2px 1px rgb(23, 30, 55);
}

.div-packages-main-package:hover {
	transform: translate(-5px, -5px);
	box-shadow: 10px 10px 5px 1px rgb(23, 30, 55);
}

.div-packages-main-package-text {
	font-size: 1.5em;
}

.div-packages-main-package-name {
	width: 300px;
	height: 150px;
	transform:  translate(-89px, -151px) rotate(-45deg);
}

}

/* Portfolio Page Styling */

.div-portfolio {
	width: 100%;
	height: auto;
	background: var(--branding-color-1);
	padding: 3em 5%;
	text-align: center;
}

.grid-portfolio {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	grid-gap: 50px;
	padding: 5%;
}

.img-portfolio-a,
.img-portfolio-b,
.img-portfolio-c,
.img-portfolio-d,
.img-portfolio-e,
.img-portfolio-f {
	width: 95%;
	height: 0;
	padding-top: 50%;
	position: relative;
	background-size: 100%, auto;
	background-repeat: no-repeat;
	margin: 2.5%;
}

.img-portfolio-a {
	background-image: url('Images/rmjphotography.jpg');
}

.img-portfolio-b {
	background-image: url('Images/jrpaintings.jpg');
}

.img-portfolio-c {
	background-image: url('Images/advertiseuhere.png');
}

.img-portfolio-d {
	background-image: url('Images/brag.png');
}

.img-portfolio-e {
	background-image: url('Images/silhouette.png');
}

.img-portfolio-f {
	background-image: url('Images/the-pets-butler.png');
}

.grid-portfolio-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	color: #ffffff;
	z-index: 1;
	padding: 5%;
	opacity: 0;
	transition: 2s;
}

.grid-portfolio-overlay:hover {
	opacity: 1;
	background-color:  rgba(0, 0, 0, 0.8);
	transition: 0.5s;
}

.grid-portfolio-overlay h6 {
	color: white;
}

.grid-portfolio-overlay p {
	display: inline;
}

/* Testimonial Section Styling */

.carousel {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	background: var(--branding-color-1);
}

.testimonial-title {
	text-align: center;
	margin: 0 auto 1em auto;
}

.carousel__track-container {
	position: relative;
	width: 70%;
	height: auto;
	top: 10%;
	margin: 0 auto;
	overflow: hidden;
}

.carousel__track {
	position: relative;
	padding: 0;
	margin: 0;
	list-style: none;
	height: 80%;
	transition: transform 25ms ease-in;
}

.carousel__slide {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%; 
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel__item {
	font-family: Font-Body;
	text-align: left;
	font-size: 2.3em;
}

.carousel__item--name {
	text-align: center;
	font-weight: bold;
	display: block;
}

.carousel__button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	background: none;
	border: 0;
}

.carousel-arrow {
	height: 60px;
	width: 60px;
}

.carousel__button--left {
	left: 7.5%;
	transform: translateX(-50%);
}

.carousel__button--right {
	right: 7.5%;
	transform: translateX(50%);
}

.carousel__nav {
	position: relative;
	height: auto;
	display: flex;
	justify-content: center;
}

.carousel__indicator {
	border: 0;
	border-radius: 50%;
	margin: 0 40px 100px 40px;
	height: 40px;
	width: 40px;
	background: var(--branding-color-2);
	cursor: pointer;
}

.carousel__indicator.current-slide {
	background: white;
}

.is-hidden {
	display: none;
}

@media screen and (min-width: 1024px) {

.carousel__track-container {
	width: 50%;
}

.carousel__track {
	height: 50%;
}

.carousel-arrow {
	height: 40px;
	width: 40px;
}

.carousel__button--left {
	left: 20%;
}

.carousel__button--right {
	right: 20%;
}

.carousel__item {
	font-size: 2em;
}

.carousel__indicator {
	margin: 0 20px;
	height: 15px;
	width: 15px;
}

}

/* Team Page Styling*/

#header-2 .label--header-toggle span,
#header-2 .label--header-toggle span::before,
#header-2 .label--header-toggle span::after {
	background: var(--branding-color-1);
	box-shadow: none;
}

#header-2 .header-toggle:checked ~ .label--header-toggle span {
	background: none;
	transition: background 250ms ease-in-out 300ms;
}

#header-2 nav {
	background: #ffffff;
}

#header-2 nav a {
	color: var(--branding-color-1);
}

#header-2 nav a:visited {
	color: var(--branding-color-1);
}

#header-2 nav a:hover {
	color: var(--branding-color-2);
}

#header-2 nav a:active {
	color: var(--branding-color-2);
}

.img-team {
	width: 100%;
	top: 8em;
	display: block;
	object-fit: cover;
	object-position: center;
}

.div-team {
	width: 100%;
	height: auto;
	padding: 0% 20%;
	color: var(--branding-color-1);
}

.div-team h2 {
	text-align: center;
}

.div-team2 {
	width: 100%;
	height: auto;
	background: var(--branding-color-2);
	padding: 10% 20%;
	clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
	color: var(--branding-color-1);
}

.div-team3 {
	width: 100%;
	height: auto;
	padding: 0% 20%;
	text-align: center;
	display: flex;
	flex-direction: column;
	color: var(--branding-color-1);
}

.a-team3:link {
	color: var(--branding-color-1);
	font-size: 2em;
	margin-bottom: 1em;
}

.a-team3:visited {
	color: var(--branding-color-1);
}

.a-team3:hover {
	color: var(--branding-color-2);
}

.a-team3:active {
	color: var(--branding-color-2);
}

.btn--team {
	color: var(--branding-color-1);
	border: 3px solid var(--branding-color-1);
	margin: 1em 0;
}

.div-team3-socials {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 2em;
}

@media screen and (min-width: 1024px) {

.img-team {
	height: 70%;
}

.header-2-logo {
	height: 3em;
}

.btn-team {
	padding: 1em 3em 3em 3em;
}

}

/* FAQ Page Styling */

.faq__title-checkbox {
	display: none;
}

.faq__title-block {
	position: relative;
	height: 2em;
	margin-bottom: 1em;
	cursor: pointer;
}

.faq__title-overlay {
	position: absolute;
	width: calc(100% - 6em);
	height: 100%;
	left: 3em;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: left;
	transition: left 500ms ease-in-out;
	text-align: center;
	padding: 0 1em 1em 1em;
	border-bottom: 0.5px solid var(--branding-color-1);
}

.faq__title {
	display: block;
	font-family: Font-Header;
	font-size: 1em;
	text-align: left;
	text-transform: none;
}

.faq__title--text {
	margin-left: auto;
}

.faq__arrow {
	height: 1em;
	width: auto;
	margin: 0;
}

.faq__title-checkbox:checked + .faq__sct {
	transform: scale(1,1);
	transform-origin: top;
	max-height: 10000px;
	transition-property: transform, max-height;
	transition-duration: 250ms;
	transition-timing-function: ease-in-out;
}

.faq__title-checkbox:checked + .faq__sct * {
	opacity: 1;
	transition: opacity 250ms ease-in-out 250ms;
}

.faq__sct {
	max-height: 0;
	padding: 0;
	margin: 0;
	transform: scale(1,0);
	transform-origin: top;
	transition-property: transform, max-height;
	transition-duration: 250ms;
	transition-timing-function: ease-in-out;
	overflow: hidden;
}

.faq__sct * {
	opacity: 0;
}

.faq__text-container {
	padding: 2em 8em;
	height: auto;
	width: 100%;
}

.faq__text {
	text-align: left;
	display: inline;
	font-size: 1.5em;
	z-index: +1;
	position: relative;
}

.faq__text__link:link {
	color: var(--branding-color-1);
	text-decoration: underline;
}

.faq__text__link:visited {
	color: var(--branding-color-1);
}

.faq__text__link:hover {
	color: var(--branding-color-2);
}

.faq__text__link:active {
	color: var(--branding-color-2);
}

@media screen and (min-width: 1024px) {

.faq__title-block {
	height: 2em;
	margin-bottom: 0.5em;
}

.faq__title-overlay {
	position: absolute;
	width: calc(100% - 10em);
	left: 5em;
}

.faq__title {
	font-size: 1.5em;
	margin: 0;
}

.faq__title--text {
	display: inline;
	margin-left: auto;
}

.faq__arrow {
	height: 0.5em;
	margin: 0;
}

.faq__text-container {
	padding: 2em 2em;
	width: calc(100% - 20em);
	margin: 0 10em;
}

.btn--faq {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin: 0 0 1em 0;
}

.faq__quote-box {
	margin: 0;
	padding: 2em 25% 2em 25%;
}

}

/* Blog Styling*/

.pagelayer-service-btn {
	border: none !important;
	background: yellow !important;
	border-radius: 0 !important;
}
.pagelayer-btn-custom {
	border: none !important;
	background: yellow !important;
}
.pagelayer-ele-link {
	border: none !important;
	background: yellow !important;
}
.pagelayer-button {
	border: none !important;
	background: yellow !important;
}
.pagelayer-btn-custom {
	border: none !important;
	background: yellow !important;
}

/* 404 Not Found Page Styling */

.FOF__sct {
	text-align: center;
	height: 50vh;
	margin: 3em;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.FOF__a,
.FOF__a:visited {
	color: var(--branding-color-1);
}

.FOF__a:hover {
	color: var(--branding-color-2);
}

/* Footer Section Styling */

footer {
	display: none;
}

.footer-text,
.footer-text:visited {
	color: var(--branding-color-1);
	font-size: 1.5em;
	font-family: Font-Body;
	padding: 0;
	margin: 0;
	line-height: 1.8;
}

.footer-text__title,
.footer-text__title:visited {
	font-weight: bold;	
	text-transform: uppercase;
}

.footer-text__title .slash::before {
  content: " / ";
  margin: 0;
}

.footer-text--link:hover,
.footer-text--link:active {
	color: white;
}

.div-footer {
	width: 100%;
	height: auto;
	background: var(--branding-color-2);
	padding: 11vw 3vw 3vw 3vw;
	clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 100%);
	color: var(--branding-color-1);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.div-footer-background {
	width: 100%;
	height: auto;
	background: var(--branding-color-1);
}

.div-footer-background--white {
	background: white;
}

footer ul {
	list-style: none;
	text-align: left;
}

footer ul:nth-of-type(7) {
	margin-left: auto;
	text-align: right;
}

.img-footer-social {
	width: 25px;
	height: auto;
	margin: 20px 0px 20px 35px;
}

@media screen and (min-width: 1024px) {

footer {
	display: inline-block;
}

}

