/* 

----- 01 TYPOGRAPHY SYSTEM

- Font sizes (px):
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights:
Default: 400
Semibold: 500
Bold: 600

- Line heights:
Default: 1

----- 02 COLORS
- Primary: #26365E
- Tints: 
- Shades:
- Accents:
- Greys:
#444



----- 03 SHADOWS

----- 04 BORDER RADIUS

----- 05 WHITESPACE
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/

/* General Style */

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	font-weight: 400;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 1.6rem;
	color: #555;
}

header {
	margin-bottom: 12rem;
}

li {
	list-style: none;
}

a:link,
a:visited {
	text-decoration: none;
	color: inherit;
}

/* 
****************************
Utility Helper
****************************
*/

.margin-right-sm {
	margin-right: 1rem;
}

/* 
****************************
Button Style
****************************
*/

.btn,
.btn:link,
.btn:visited {
	display: inline-block;
	transition: all 0.3s ease;
}

.btn--cta,
.btn--cta:link,
.btn--cta:visited {
	background-color: #26365e;
	padding: 1.2rem 2.4rem;
	font-size: 1.8rem;
	color: #fff;
	border-radius: 9.6rem;
}

.btn--cta:hover,
.btn--cta:active {
	background-color: #1e2b4b;
}

.btn--outline,
.btn--outline:link,
.btn--outline:visited {
	background-color: #fff;
	padding: 1.2rem 2.4rem;
	font-size: 1.8rem;
	color: #444;
	border-radius: 9.6rem;
	box-shadow: inset 0 0 0 2px #e9ebef;
}

.btn--outline:hover,
.btn--outline:active {
	background-color: #e9ebef;
}

.btn--sm,
.btn--sm:link,
.btn--sm:visited {
	font-size: 1.2rem;
	margin-top: 0;
	background-color: #26365e;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 9rem;
}

.btn--sm:hover,
.btn--sm:active {
	background-color: #1e2b4b;
}

.section-header {
	display: flex;
	justify-content: space-around;
	align-items: center;
	font-size: 2rem;
	margin-bottom: 3.2rem;
}

.logo {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 2.4rem;
}

.nav-main {
	padding: 2rem 1rem;
}

.nav-main ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 400;
	align-items: center;
	gap: 1rem;
}

.nav-item {
	padding: 1.2rem 2.4rem;
	font-weight: 500;
	color: #444;
}

.nav-item:hover {
	color: #8f8f8f;
	text-decoration: underline;
	text-underline-offset: 1.2rem;
}

.section-hero {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	column-gap: 5.2rem;
	margin-bottom: 7.2rem;
	padding: 9.8rem 7.2rem;
}

.hero-heading {
	font-size: 3.6rem;
	margin-bottom: 0.64rem;
}

.hero-greet,
.hero-text {
	font-weight: 500;
	font-size: 2rem;
}

.hero-cta {
	margin-top: 3.6rem;
	margin-bottom: 2rem;
}

.hero-img {
	justify-self: end;
	max-width: 26rem;
	border-radius: 90rem;
	box-shadow: inset 0 0 0 2px #e9ebef;
}

.hero-sm-icon {
	width: 3.2rem;
}

.container {
	max-width: 100rem;
	padding: 0 2rem;
	margin: 0 auto;
}

.background-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-items: center;
	gap: 3.6rem;
	margin-bottom: 9.8rem;
}

.background-item {
	padding: 2.4rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	width: 100%;
	border-radius: 1rem;
}

.background-item h2 {
	margin-bottom: 1.6rem;
}

.background-item h3 {
	margin-bottom: 1.2rem;
}

.experience {
	margin-bottom: 3.2rem;
}

.background-icon {
	width: 5.2rem;
	margin-bottom: 2.4rem;
}

.background-text {
	line-height: 1.6;
	margin-bottom: 1rem;
}

.background-item li {
	margin-bottom: 1rem;
}

.background-item li:hover {
	text-decoration: under;
}

.nav-checklist:link,
.nav-checklist:visited {
	color: #444;
}

.nav-checklist:hover {
	text-decoration: underline;
	text-underline-offset: 0.64rem;
}

.nav-checklist:before {
	content: '✔';
	display: inline-block;
	margin-right: 1rem;
	color: #8f8f8f;
}

.review-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-items: center;
	gap: 3.6rem;
	margin-bottom: 9.8rem;
}

#reviews-heading {
	margin-bottom: 2.4rem;
}

.review-item {
	padding: 2.4rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	width: 100%;
	border-radius: 1rem;
}

.quote {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 2.4rem;
}

.review-author {
	font-size: 1.2rem;
}

.review-img {
	width: 6.4rem;
	margin-bottom: 1rem;
}

footer {
	text-align: center;
	padding: 6.4rem;
}

@media screen and (max-width: 720px) {
	.container {
		padding: 0 3.2rem;
	}

	.nav-item {
		font-size: 1.6rem;
	}

	.section-header {
		display: flex;
		flex-direction: column;
		font-size: 2rem;
		margin-top: 3.6rem;
	}

	.logo {
		margin-bottom: 2.4rem;
	}

	.nav-item {
		padding: 0.64rem 1.2rem;
	}

	.section-hero {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;

		text-align: center;
	}

	.hero-img {
		margin-bottom: 4.2rem;
	}

	.hero-cta {
		display: flex;
		align-items: center;
		flex-direction: column;
		gap: 1.6rem;
	}

	.margin-right-sm {
		margin: 0;
	}

	.hero-social {
		display: flex;
		justify-content: center;
	}

	.background-section {
		display: grid;
		grid-template-columns: 1fr;
	}

	.review-container {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 3.6rem;
		margin-bottom: 9.8rem;
	}

	footer {
		text-align: center;
		padding: 2rem;
	}
}
