/* ######### CONSTANTS ######### */
/* ############################# */
@import url('https://fonts.googleapis.com/css?family=Poppins');

:root {
	--hidden-color: rgba(0, 0, 0, 0);
	--big-font: 64px;
	--medium-font: clamp(3vw, 5vh, 4vw);
	--medium-small-font: 2.5vh;
	--small-font: 18px;
	--font-type: 'Poppins', sans-serif;
	--btr-blue: #003585;
	--client-background: rgb(138, 190, 206);
	--emphasis-color: #142642;
	--paragraph-font-size: 22px;
}

body {
	margin: 0;
	overflow-y: auto;
	overflow-x: hidden;
	font-family: var(--font-type);
	width: 100vw;
}

section {
	width: 100vw;
	overflow: hidden;
}

a,
a:visited {
	font-weight: bold;
	font-size: 1.5vh;
	text-decoration: none;
	margin-left: 20px;
}

a:hover {
	opacity: 0.6;
	text-decoration: underline;
}

@media (prefers-reduced-motion) {
	.hidden {
		transition: none;
	}
}

@media screen and (max-width: 1100px) {
	:root {
		--small-font: 16px;
	}
}

/* ######### BODY ######### */
/* ######################## */

.hidden {
	opacity: 0;
	transform: translateY(5vh);
	filter: blur(1px);
	transition: opacity 1s, transform 1s;
}

.show {
	transform: translateY(0);
	filter: blur(0);
	opacity: 1;
}

ol {
	list-style-type: none;
}

/* ######### PAGE 1  ############# */
/* ############################### */

p {
	margin: 0;
	font-size: var(--small-font);
}

/* ######### PAGE 1 ANIMATIONS ######### */
/* ##################################### */

@keyframes hide-fade-in {
	0% {
		opacity: 0;
	}

	70% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* ######### PAGE 2 ######### */
/* ########################## */

.content-header {
	font-size: 32px;
	width: 60vw;
	margin-top: 10vh;
	margin-bottom: 5vh;
	font-weight: bold;
	color: rgb(50, 50, 50);
}

.text-content {
	margin: 10vh 0 10vh 0;
	text-align: left;
	width: 50vw;
}

@media screen and (max-width: 1300px) {
	.content-header {
		font-size: 24px;
	}
}

@media screen and (max-width: 1200px) {
	.text-content {
		width: 70vw;
	}
}

@media screen and (max-width: 600px) {
	.content-header {
		font-size: 20px;
	}

	.text-content {
		width: 80vw;
	}
}

.metric-container:nth-child(6) {
	transition-delay: 100ms;
}

.metric-container:nth-child(7) {
	transition-delay: 200ms;
}

.metric-container:nth-child(8) {
	transition-delay: 300ms;
}

li {
	margin-top: 3vh;
}

@keyframes content-load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* ######### PAGE 3 ######### */
/* ########################## */

.page-title {
	margin-top: 10vh;
	font-size: 22px;
	font-weight: bold;
	color: var(--emphasis-color);
	color: var(--btr-blue);
	max-width: 80vw;
	text-align: left;
	align-self: start;
	padding-left: 10vw;
}

#page3-hashtags-container {
	height: 20vh;
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.row-hashtags {
	display: flex;
	flex-direction: row;
	align-items: space-between;
	justify-content: space-evenly;
	width: 100%;
}

.hashtag {
	font-size: 24px;
	color: var(--btr-blue);
	border-radius: 50px;
	position: relative;
	height: 5vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px 0 20px;
	margin: 0 2px 0 1px;
	opacity: 0;
	font-weight: bold;
}

.mobile-hashtag {
	display: none;
}

@media only screen and (max-width: 630px) {
	.desktop-hashtag {
		display: none;
	}

	.mobile-hashtag {
		display: flex;
	}
}

@media only screen and (max-width: 1300px) {
	.row-hashtags {
		width: 80%;
	}
}

@media only screen and (max-width: 1000px) {
	.row-hashtags {
		width: 100%;
	}

	.hashtag {
		font-size: 20px;
	}
}

@media screen and (max-width: 750px) {
	.hashtag {
		font-size: 18px;
	}
}

@media screen and (max-width: 480px) {
	.hashtag {
		font-size: 14px;
	}
}

/* ######### PAGE 4 ######### */
/* ########################## */

#images-container {
	display: flex;
	justify-content: start;
	align-items: center;
	width: 70vw;
	overflow: hidden;
}

.image-nav {
	min-width: 100%;
	height: 90%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
}

.tool-image {
	/* max-height: 95%; */
	max-width: min(100%, 1000px);
	border-radius: 2%;
}

.image-and-caption-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-height: 90%;
	max-width: 90%;
}

.image-caption {
	font-size: var(--small-font);
	text-align: center;
	margin-top: 1vh;
	max-width: 80%;
}

@media screen and (max-width: 650px) {
	.image-caption {
		max-width: 100%;
	}
}

.nav-arrow {
	height: 100px;
	width: 100px;
	border: none;
	background: transparent;
}

/* FOOTER */

.contact-bar {
	padding: 10vh 0;
	background: #00255b;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15vw;
	font-family: 'Poppins', sans-serif;
	width: 100%;
}

.contact-bar-title {
	font-size: 22px;
	text-transform: uppercase;
}

.contact-info-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-option {
	color: white;
	font-size: 22px;
}

.contact-option > i {
	margin-right: 20px;
}

@media screen and (max-width: 530px) {
	.contact-bar {
		flex-direction: column;
		gap: 5vh;
		padding: 7.5vh 0;
	}

	.contact-bar-title {
		font-size: 18px;
	}

	.contact-option {
		font-size: 18px;
	}
}

/* END FOOTER */

@media only screen and (max-width: 1200px) {
	#images-container {
		width: 100vw;
	}
}

@media only screen and (max-width: 950px) {
	.image-and-caption-container {
		max-width: 80%;
		max-width: 80%;
	}
}
