* {
	box-sizing: border-box;
}

:root {
	--primary-color: #0f1b4c;
}

html {
	font-size: 62.5%;
}

body {
	font-family: "Poppins", sans-serif;
}

/* Common */
a {
	text-decoration: none;
}

.content {
	width: 1110px;
	max-width: calc(100% - 48px);
	margin: 0 auto;
}

.btn {
	display: inline-block;
	min-width: 98px;
	color: #fff;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	border-radius: 8px;
	background: var(--primary-color);
	padding: 18px 16px;
}

.btn:hover {
	opacity: 0.85;
}

/* === Header === */

.header {
	position: relative;
	background-color: #e6f0ff;
	height: 100vh;
}

.navbar {
	display: flex;
	align-items: center;
	padding-top: 38px;
}

.navbar ul {
	display: flex;
	margin-left: 50px;
}

.navbar ul a {
	font-size: 1.4rem;
	font-weight: 500;
	color: #4f5361;
	padding: 8px 14px;
}

.navbar ul a:hover {
	text-decoration: underline;
}

.actions {
	margin-left: auto;
}

.navbar .action-link {
	color: var(--primary-color);
	font-size: 1.4rem;
	font-weight: 500;
}

.navbar .action-btn {
	padding: 13px 16px;
	margin-left: 18px;
}

.hero {
	margin-top: 138px;
}

.hero .info {
	max-width: 50%;
}

.hero .sub-title {
	color: #687690;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.01em;
}

.hero .title {
	margin-top: 8px;
	color: #000336;
	font-size: 6.4rem;
	font-weight: 600;
	line-height: 1.19;
}

.hero .desc {
	color: #5a6473;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.78; /* 177.778% */
	text-transform: capitalize;
}

.hero-cta {
	min-width: 170px;
	margin-top: 40px;
}

.hero-img {
	position: absolute;
	bottom: 0;
	right: calc((100vw - 1110px) / 2 - 100px);
}

.clients {
	margin-top: 79px;
	padding: 43px 0 64px;
}

.clients .row {
	display: flex;
	justify-content: space-between;
}

.clients .desc {
	color: #7d8589;
	text-align: right;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.25; /* 125% */
}

.clients .row-desc {
	margin-top: 23px;
}

.clients .images {
	margin-top: 96px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.clients .images a {
	display: flex;
	align-items: center;
	height: 90px;
	padding: 0 42px;
	border-radius: 8px;
}

.clients .images a:hover {
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* Guide */

.guide {
	margin-top: 40px;
	padding: 79px 0;
}

.guide .sub-title {
	position: relative;
	color: #000339;
	text-align: center;
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1; /* 100% */
}

.guide .sub-title::before {
	content: "";
	position: absolute;
	display: block;
	width: 41px;
	height: 4px;
	left: 50%;
	transform: translateX(-50%);
	top: -10px;
	border-radius: 12px;
	background: #000339;
}

.guide .desc {
	width: 459px;
	margin: 20px auto 0;
	color: #5a6473;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.87;
}

.list-guide {
	display: flex;
	justify-content: center;
	margin-top: 70px;
}

.guide-item {
	text-align: center;
	margin: 0 70px;
}

.guide-item .title {
	margin-top: 26px;
	color: #3b3c45;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.1; /* 110% */
}

.guide-item .link {
	display: inline-block;
	margin-top: 10px;
	color: #0689ff;
	font-size: 1.4rem;
	font-weight: 600;
}

.guide-item .arrow {
	margin-left: 8px;
}

.guide-cta {
	display: flex;
	margin-top: 50px;
	justify-content: center;
}
