:root {
  --orange: #ff8300;
  --white: #FFFFFF;
  --blue-1: #f2f8fc;
  --blue-2: #e2edf6;
  --blue-3: #c0d8eb;
  --blue-4: #a2c7e2;
  --blue-5: #5a88ad;
  --blue-6: #27517a;
  --blue-7: #002856; /* Primary */
  --blue-8: #001b3b; 
  --blue-9: #000f22;
}

body { 
  background-color: var(--blue-7); 
  color: var(--blue-4);
}
.center {
	display: flex;
	width: 100%;
	justify-content: center;
}
/* ----------- TYPOGRAPHY ----------- */
h1, h2, h3, h4 {
	font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}
h1 {
	font-size: 4.5rem;
	font-weight: 300;
	margin: 0 0 1rem 0;
	text-align: center;
}
h2 {
	font-size: 3.75rem;
	font-weight: 700;
	color: var(--blue-4);
}
h3 {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--blue-4);
	padding-top: 5rem;
}
h4 {
	font-size: 1.625rem;
}
p,
ul > li,
ol > li {
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 1.0625rem;
	line-height: 1.5;
	font-weight: 300;
	font-optical-sizing: auto;
	b {
		font-weight: 800;
	}
}
ul > li,
ol > li {
	margin-bottom: 0.625rem;	
}
ul, ol {
	li::marker {
		color: var(--orange);
	}
}
a {
	color: var(--white);
}
a:hover,
a:focus {
	text-decoration-color: var(--orange);
}
a[href^="tel:"] {
	text-decoration: none;
}
.accent {
	color: var(--orange);
}
@media (max-width: 1200px) {
	h1 {
		font-size: 4.25rem;
	}
	h2 {
		font-size: 3.375rem;
	}
	h3 {
		font-size: 2.25rem;
		padding-top: 4rem;
	}
	h4 {
		font-size: 1.375rem;
	}
}
@media (max-width: 992px) {
	h1 {
		font-size: 4rem;
	}
	h2 {
		font-size: 3rem;
	}
	h3 {
		font-size: 2rem;
		padding-top: 4rem;
	}
	h4 {
		font-size: 1.25rem;
	}
	p,
	ul > li,
	ol > li {
		font-size: 1.0625rem;
	}
}
@media (max-width: 768px) {
	h1 {
		font-size: 3.75rem;
	}
	h2 {
		font-size: 2.75rem;
	}
	h3 {
		font-size: 1.75rem;
		padding-top: 3rem;
	}
	h4 {
		font-size: 1.125rem;
	}
	p,
	ul > li,
	ol > li {
		font-size: 1rem;
	}
}
@media (max-width: 576px) {
	h1 {
		font-size: 2.75rem;
	}
	h2 {
		font-size: 2.125rem;
	}
	h3 {
		font-size: 1.5rem;
		padding-top: 1.5rem;
	}
	h4 {
		font-size: 1rem;
	}
	p,
	ul > li,
	ol > li {
		font-size: 0.875rem;
	}
}
blockquote {
	font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
	font-size: 1.5rem;
	line-height: 1.5;
	color: var(--blue-5);
	padding-top: 5rem;
	padding-left: 3rem;
	width: 100%;
	q {
		display: block;
		margin: 0 auto;
		max-width: 56ex;
		position: relative;
		span.closequote {
			font-family: "DM Serif Display", "Times New Roman", Times, "serif";
			font-weight: 400;
			font-style: italic;
		}
	}
	q::before {
		content: open-quote;
		font-size: 8rem;
		font-family: "DM Serif Display", "Times New Roman", Times, "serif";
		font-weight: 400;
		font-style: italic;
		position: absolute;
		top: -2.75rem;
		left: -5.25rem;
	}
	q::after {
    	content: close-quote;
		color: transparent !important;
	}
	cite {
		font-size: 0.875rem;
		line-height: 1.2;
		font-style: normal;
		font-weight: 700;
		text-transform: uppercase;
		display: flex;
		margin: 1rem auto 0 1.5rem;
		position: relative;
	}
	cite::before {
		content: '—';
		position: absolute;
		left: -1.5rem;
	}
}
@media (max-width: 1200px) {
	blockquote { 
		font-size: 1.25rem; 
		padding-top: 2.5rem;
		padding-left: 2.25rem;
		q::before {
			font-size: 7rem;
			top: -2.25rem;
        	left: -4.25rem;
		}
		cite {
			font-size: 0.8125rem;
			margin: 1.75rem auto 0 1.5rem;
            width: 100%;
		}
	}
}
@media (max-width: 992px) {
	blockquote { 
		font-size: 1.125rem;
		padding-top: 2rem;
		padding-left: 1.75rem;
		q::before {
			font-size: 6rem;
			top: -2rem;
            left: -3.5rem;
		}
		cite {
			font-size: 0.8125rem;
			margin: 1.25rem auto 0 1.5rem;
		}
	}
}
@media (max-width: 768px) {
	blockquote { 
		font-size: 1rem;
		padding-top: 1.25rem;
		padding-left: 1rem;
		q::before {
			font-size: 5rem;
            top: -1.75rem;
            left: -3.25rem;
		}
		q {
			max-width: 44ex;
		}
		cite {
			font-size: 0.75rem;
			margin: 1.25rem auto 0 1.75rem;
			width: 100%;
		}
		cite::before {
			left: -1.25rem;
		}
	}
}
@media (max-width: 576px) {
	blockquote { 
		font-size: 0.875rem;
		padding-top: 1.25rem;
		padding-left: 1rem;
		q::before {
			font-size: 4.25rem;
            top: -1.375rem;
            left: -2.75rem;
		}
		q {
			max-width: 82%;
		}
		cite {
			font-size: 0.75rem;
			margin: 1.25rem auto 2rem 1.25rem;
			width: 100%;
		}
		cite::before {
			left: -1.25rem;
		}
	}
}

/* ----------- CAROUSEL ----------- */
.carousel-inner {
	min-height: 560px;
}
.carousel-control-next, 
.carousel-control-prev {
	filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(393%) hue-rotate(170deg) brightness(96%) contrast(94%);
	color: var(--blue-7);
	opacity: 1;
}
.carousel-control-next:focus, 
.carousel-control-next:hover, 
.carousel-control-prev:focus, 
.carousel-control-prev:hover {
	filter: brightness(0) saturate(100%) invert(53%) sepia(28%) saturate(2821%) hue-rotate(0deg) brightness(101%) contrast(102%);
	color: var(--orange);
	opacity: 1;
}
.carousel-indicators [data-bs-target] {
	background-color: var(--blue-4);
	opacity: 1;
}
.carousel-indicators .active {
	background-color: var(--blue-8);
	opacity: 1;
}
.carousel-indicators button:not(.active):hover,
.carousel-indicators button:not(.active):focus {
	background-color: var(--orange);
	opacity: 1;
}
@media (max-width: 1200px) {
	.carousel-inner {
		min-height: 450px;
	}
	.carousel-control-next, 
	.carousel-control-prev {
		width: 100px; 
	}
}
@media (max-width: 992px) {
	.carousel-inner {
		min-height: 400px;
	}
	.carousel-control-next, 
	.carousel-control-prev {
		width: 80px; 
	}
}
@media (max-width: 800px) {
	.carousel-control-next, 
	.carousel-control-prev {
		width: 50px; 
	}
}
@media (max-width: 768px) {
	.carousel-inner {
		min-height: 440px;
	}
}
@media (max-width: 576px) {
	.carousel-inner {
		min-height: auto;
	}
	.carousel-control-next, 
	.carousel-control-prev {
		display: none;
		width: 0;
	}
}

/* ----------- Fade In ----------- */
@keyframes fadeInUp {
  from {
    transform: translateY(100px);
    opacity: 0.1;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-section {
	width: 100%;
	display: block;
}
.fade-in-up {
  animation: 1s both fadeInUp;
}

/* ----------- HEADER ----------- */
header {
	height: 100vh;
	width: 100%;
	background-image: url('../images/hero-background.webp');
	background-color: var(--blue-9);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	.tophat {
		background: linear-gradient(0deg, rgba(0,15,34,0) 0%, rgba(0,15,34,0.3) 25%, rgba(0,15,34,0.5) 60%, rgba(0,15,34,0.9) 90%);
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 1.5rem;
		.top-logo {
			width: 210px;
		}
	}
	@media (max-width: 1200px) {
		.tophat {
			padding: 1.375rem;
			.top-logo {
				width: 200px;
			}
		}
	}
	@media (max-width: 992px) {
		.tophat {
			padding: 1.3125rem;
			.top-logo {
				width: 185px;
			}
		}
	}
	@media (max-width: 768px) {
		.tophat {
			padding: 1.25rem;
			.top-logo {
				width: 175px;
			}
		}
	}
	.scroll-down,
	.scroll-down img {
		display: block;
		margin: 0 auto;
		padding-bottom: 2rem;
		width: 1.75rem;
		height: auto;
		filter: drop-shadow(0 0 0.625rem rgba(0,0,0,0.7));
	}
}
@keyframes decisions {
  0% {
	width: 0%;
  }
  100% {
	width: 100%;
  }
}
.animate-underline {
	color: var(--orange);
	display: inline-block;
	text-decoration: none; 
	position: relative;
}
.animate-underline::after {
	content: "";
	position: absolute;
	display: block;
	border-radius: 1px;
	height: 2px;
	background-color: var(--orange);
	animation-name: decisions;
	animation-duration: 1.5s;
	animation-delay: 0.3s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

/* ----------- NAVIGATION ----------- */
#skipNav {
	display: block;
	padding: 1.25rem;
	color: var(--white);
	background-color: var(--blue-7);
	outline: 0;
	text-align: center;
}
.skiplink-text {
	padding: 0.75rem 1.25rem;
	text-transform: uppercase;
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.04rem;
	text-align: center;
	outline: 1px dotted;	
}
.btn-hamburger {
	width: 42px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: 0.5s;
}
.btn-hamburger div,
.btn-hamburger::before,
.btn-hamburger::after {
	background-color: var(--white);
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	margin: 5px 0;
	transition: 0.25s;
}
.btn-hamburger:hover div,
.btn-hamburger:hover::before,
.btn-hamburger:hover::after {
	background-color: var(--orange);
}
.btn-hamburger:hover div {
	width: 20px;
	margin-left: 10px;
}
.btn-hamburger:hover::before {
	width: 14px;
	margin-left: 16px;
}
.btn-hamburger:hover::after {
	width: 16px;
	margin-left: 14px;
}
.offcanvas.offcanvas-top {
	background-color: var(--blue-8);
	display: flex;
	flex-direction: column;
    align-items: center;
	height: 100%;
	padding-block: 2rem;
	.nav {
		flex-direction: column;
	}
	nav ul.nav > li.nav-item a {
		font-family: "Inter", "Helvetica Neue", Helvetica, Arial, "sans-serif";
		font-size: 2.25rem;
		line-height: 1;
		font-weight: 200;
		text-decoration: none;
		padding: 1.5rem 3rem;
		color: var(--white);
		background-color: var(--blue-8);
		border-bottom: 1px solid transparent;
		border-radius: 6px;
		width: 100%;
		margin-bottom: 0.75rem;
		&:hover,
		&:focus {
			background-color: var(--blue-9);
			border-bottom-color: var(--blue-7);
		}
	}
	.nav-contact {
		border-right: 1px solid var(--orange);
		padding-right: 2rem;
		margin-right: 2rem;
		height: 100%;
		.logo-badge {
			width: 15rem;
		}
		h3 {
			margin-top: 1rem;
			margin-bottom: 0.75rem;
			padding: 0;
			text-align: center;
		}
		p {
			font-family: "Inter", "Helvetica Neue", Helvetica, Arial, "sans-serif";
			font-size: 1rem;
			line-height: 1.2;
			font-weight: 300;
			color: var(--white);
			margin-bottom: 0.375rem;
			text-align: center;
			a {
				color: var(--white);
			}
			a[href^="tel:"] {
				text-decoration: none;
			}
		}
	}
	@media (max-width: 1200px) {
		nav ul.nav > li.nav-item a {
			font-size: 2rem;
			padding: 1.25rem 2.75rem;
		}
		.nav-contact {
			padding-right: 1rem;
        	margin-right: 1rem;
			.logo-badge {
				width: 13rem;
			}
		}
	}
	@media (max-width: 992px) {
		nav ul.nav > li.nav-item a {
			font-size: 1.75rem;
			padding: 1.125rem 2.5rem;
		}
		.nav-contact {
			padding-right: 1rem;
        	margin-right: .25rem;
			.logo-badge {
				width: 10rem;
			}
		}
	}
	@media (max-width: 768px) {
		nav ul.nav > li.nav-item a {
			font-size: 1.5rem;
			text-align: center;
			padding: 1rem 2rem;
		}
		.nav-contact {
			border-right: none;
			border-top: 1px solid var(--orange);
			padding-top: 2.5rem;
        	margin-top: 0.5rem;
			padding-right: 0;
        	margin-right: 0;
			.logo-badge {
				width: 8rem;
			}
		}
	}
	.offcanvas-header {
		width: 100%;
		padding-inline: 2rem;
	}
	.offcanvas-body {
		width: 100%;
	}
	.btn-close {
		background: none;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--white);
		width: 1.75rem;
		height: 1.75rem;
		opacity: 1;
		background-color: transparent;
		&:focus,
		&:hover {
			background: none;
			background-color: transparent;
			opacity: 1;
			filter: none;
			color: var(--orange);
		}
	}
	.btn-close svg {
		width: 1.25rem;
	}
	.btn-close svg path {
		fill: currentcolor;
	}
}

/* --------------------- Buttons --------------------- */
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
a.btn-info {
    font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
    white-space: normal;
    border-width: 1px;
    position: relative;
    letter-spacing: 0.1em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.875rem 1.5rem;
    background-color: var(--blue-8) !important;
    border-color: var(--blue-8) !important;
    color: var(--white) !important;
    border-radius: 100px;
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: .3s,.3s,.3s,.8s;
    transition-timing-function: ease-in-out;
}
a.btn-info:hover, 
a.btn-info:focus-within {
    color: var(--orange) !important;
	background-color: var(--blue-9) !important;
    border-color: var(--blue-9) !important;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
@media screen and (prefers-reduced-motion: no-preference) { 
	.btn-info:hover:after, 
	.btn-info.active:after {
		 content: '';
		 border: 1px solid;
		 border-color: inherit;
		 width: 100%;
		 height: 100%;
		 transition: border-radius 0.3s;
		 -webkit-border-radius: 100px;
		 border-radius: 100px;
		 position: absolute;
		 left: 0%;
		 top: 0%;
		 opacity: 1;
	}
	.btn-info:hover:after, 
	.btn-info.active:after {
		 -webkit-animation: 1s btn-animation linear infinite;
		 animation: 1s btn-animation linear infinite;
	}
}


/* ----------- MAIN SECTIONS ----------- */
#main-content,
#section-one,
#section-two,
#section-three,
#section-four {
	outline-color: transparent;
}
#section-one,
#section-two,
#section-three,
#section-four {
	padding-block: 6.25rem;
	padding-inline: 2rem;
	.section-content {
		p, 
		ul > li {
			margin-inline: auto;
			color: var(--white);
			a {
				color: var(--white);
			}
		}
	}
}
@media (max-width: 1200px) {
	#section-one,
	#section-two,
	#section-three,
	#section-four {
		padding-block: 5.25rem;
		padding-inline: 1.75rem;
	}
}
@media (max-width: 992px) {
	#section-one,
	#section-two,
	#section-three,
	#section-four {
		padding-block: 4.25rem;
		padding-inline: 1.5rem;
	}
}
@media (max-width: 768px) {
	#section-one,
	#section-two,
	#section-three,
	#section-four {
		padding-block: 3.25rem;
		padding-inline: 1.25rem;
	}
}
#section-one {
	background-color: var(--blue-7);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	
}
#section-two {
	background-color: var(--blue-8);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	
}
#section-three {
	background-color: var(--blue-7);
	color: var(--white);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	
}
#section-four {
	background-color: var(--blue-2);
	color: var(--blue-7);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	
}
#section-one,
#section-two,
#section-three {
	h2 {
		margin-bottom: 1rem;
	}
	p,
	ul > li,
	ol > li {
		max-width: 68ex;
	}
	.section-intro {
		display: flex;
		justify-content: center;
	}
	.vision {
		margin-top: 3rem;
		text-align: center;
		text-transform: uppercase;
		font-weight: 700;
		font-size: 0.875rem;
		letter-spacing: 0.2em;
		.divider {
			color: var(--orange);
			padding-inline: 0.875rem;
		}
	}
}
#section-three {
	padding-bottom: 6.25rem;
}
@media (max-width: 992px) {
	#section-three {
		padding-bottom: 5.25rem;
	}
}
@media (max-width: 768px) {
	#section-three {
		padding-bottom: 4.25rem;
	}
}
@media (max-width: 576px) {
	#section-three {
		padding-bottom: 3.25rem;
	}
}
#section-four {
	h2 {
		color: var(--blue-7);
	}
}

/* ----------- FOOTER ----------- */
footer {
	background-color: var(--blue-8);
	.footer-top {
		display: flex;
		flex-direction: column;
		.logo-badge {
			width: 24rem;
			height: auto;
			margin: 0 auto;
			padding-top: 8rem;
		}
		p.tag {
			font-family: "Inter", "Helvetica Neue", Helvetica, Arial, "sans-serif";
			font-size: 1.375rem;
			line-height: 1.4;
			font-weight: 300;
			text-align: center;
			margin: 0;
			padding: 2.5rem 1.25rem 7rem;
		}
		@media (max-width: 1200px) {
			.logo-badge {
				width: 22rem;
				padding-top: 5.25rem;
				padding-left: 10px;
			}
			p.tag {
				font-size: 1.0625rem;
				padding: 5.375rem 1.125rem 4.5rem;
			}
		}
		@media (max-width: 992px) {
			.logo-badge {
				width: 18rem;
				padding-top: 4.25rem;
				padding-left: 8px;
			}
			p.tag {
				font-size: 1rem;
				padding: 4.375rem 1rem 4rem;
			}
		}
		@media (max-width: 768px) {
			.logo-badge {
				width: 14rem;
				padding-top: 3.25rem;
				padding-left: 6px;
			}
			p.tag {
				font-size: 0.875rem;
				padding: 3.375rem 1rem 3.5rem;
			}
		}
	}
	.footer-bottom {
		background-color: var(--blue-9);
		color: var(--blue-2);
		padding: 2rem;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		h2 {
			font-size: 3.25rem;
			padding-right: 3.25rem;
		}
		p {
			font-family: "Inter", "Helvetica Neue", Helvetica, Arial, "sans-serif";
			font-size: 1rem;
			line-height: 1.2;
			font-weight: 300;
			color: var(--white);
			margin: 0;
			a {
				color: var(--white);
			}
			a:hover,
			a:focus {
				text-decoration-color: var(--orange);
			}
			a[href^="tel:"] {
				text-decoration: none;
			}
			.divider {
				color: var(--orange);
				padding-inline: 0.875rem;
			}
		}
	}
	@media (max-width: 1200px) {
		.footer-bottom {
			h2 {
				font-size: 3rem;
			}
			p {
				font-size: 1rem;
			}
		}
	}
	@media (max-width: 992px) {
		.footer-bottom {
			h2 {
				font-size: 2.75rem;
			}
		}
	}
	@media (max-width: 880px) {
		.footer-bottom {
			flex-direction: column;
			h2 {
				font-size: 2.25rem;
				margin-bottom: 1rem;
				padding-right: 0;
				text-align: center;
			}
			p {
				font-size: .9375rem;
			}
		}
	}
	@media (max-width: 576px) {
		.footer-bottom {
			h2 {
				font-size: 1.875rem;
			}
		}
	}
	.copyright {
		background-color: var(--blue-9);
		padding: 1rem;
		p {
			font-size: 0.8125rem;
			line-height: 1;
			color: var(--blue-4);
			text-align: center;
		}
	}
}
