body {
	margin: 0;
	font-family: "Work Sans", sans-serif;
	background-color: #0c2b3c;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

body > header {
	width: 100%;
	align-self: center;
	margin-inline: 0;
}

header > *,
section > *,
footer > * {
	max-width: 1280px;
	margin-inline: auto;
}

.about-bg {
	position: absolute;
	background-image: url("../img/about-bg.svg");
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
	padding-top: 100vh;
}

.core-values-wrapper {
	display: flex;
	background: #fff;
	flex-direction: column;
	align-items: center;
}

.navbar,
.hero-content {
	padding: 20px 40px;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.logo-image {
	height: 63px;
	margin-left: -20px;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 32px;
}

.nav-links li {
	font-size: 14px;
	font-weight: 500;
}

.nav-links a {
	text-decoration: none;
	color: white;
}

.contact-button a {
	padding: 12px 24px;
	background-color: #2194d2;
	color: white;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 700;
}

.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 80px;
	color: #ffffff;
	min-height: calc(100vh - 107px);
}

.hero-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	text-align: left;
	width: 100%;
	flex-wrap: wrap;
	gap: 32px;
}

.hero-text {
	font-weight: 400;
	letter-spacing: 0.01em;
	max-width: 480px;
}

.hero-text span:first-child {
	font-size: 48px;
	font-weight: 900;
	line-height: 56.3px;
	letter-spacing: 0.01em;
}

.hero-text span:last-child {
	font-size: 48px;
	line-height: 56.3px;
}

.hero h1 {
	font-size: 48px;
	font-weight: 900;
	line-height: 56.3px;
	flex: 1;
}

.hero-image {
	flex: 1;
	justify-content: center;
	display: flex;
	max-width: 480px;
}

.hero-image img {
	width: 500px;
	height: auto;
	border-radius: 20px;
}

.core-values {
	background-color: #fff;
	padding: 80px;
	text-align: center;
	background-image: url("../img/about-bg-polygon.svg");
	background-repeat: no-repeat;
	background-position: top;
	background-size: contain;
}

.core-values h2 {
	font-size: 48px;
	font-weight: 700;
	color: #0c2b3c;
	text-align: left;
}

.core-values h2 img {
	display: none;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 40px;
	padding-inline: 4vw;
}

.value-card {
	padding: 2vw 4vw;
	border-radius: 32px;
	color: white;
	text-align: center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	background-repeat: no-repeat;
	background-position: center center;
}

.value-card:nth-child(3n - 2) {
	background-image: url("../img/card-yellow-bg.svg");
}

.value-card:nth-child(3n - 1) {
	background-image: url("../img/card-pink-bg.svg");
}

.value-card:nth-child(3n) {
	background-image: url("../img/card-blue-bg.svg");
}

.value-card img {
	margin-left: -35px;
	margin-bottom: -35px;
}

.value-card h3 {
	margin-top: 20px;
	margin: 0;
	font-size: 40px;
	font-weight: 900;
	line-height: 46.92px;
	letter-spacing: 0.01em;
}

.value-card p {
	font-family: Inter;
	font-size: 18px;
	font-weight: 400;
	line-height: 28.8px;
	letter-spacing: 0.02em;
}

.dei-section {
	background: #ecf8ff;
	padding: 80px 40px;
	text-align: center;
	background-image: url("../img/dei-section-bg.svg");
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
}

.dei-section-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	padding-inline: 4vw;
	align-items: center;
}

.dei-section-grid > * {
	flex: 1;
}

.dei-section-text {
	text-align: left;
}

.dei-section div:not(.change-section) h2 {
	font-size: 18px;
	font-weight: 700;
	line-height: 21.11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2194d2;
}

.dei-section h3 {
	font-size: 48px;
	font-weight: 900;
	line-height: 56.3px;
	letter-spacing: 0.01em;
	color: #0c2b3c;
}

.dei-section p {
	font-size: 18px;
	font-weight: 400;
	line-height: 28.8px;
	letter-spacing: 0.02em;

	color: #3d5f71;
}

.dei-images {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.dei-images img {
	border-radius: 12px;
	width: 66%;
}

.dei-images img:first-child {
	z-index: 4;
	margin-top: -50px;
	align-self: flex-start;
}

.dei-images img:last-child {
	margin-top: -40%;
	z-index: 3;
}

.change-section {
	background-color: #ffffff;
	padding: 80px;
	text-align: center;
	margin-top: 48px;
	border-radius: 32px;
	overflow-x: hidden;
}

.change-section h2 {
	font-size: 40px;
	font-weight: 900;
	color: #0c2b3c;
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 46.92px;
	letter-spacing: 0.01em;
}

.change-section p {
	font-size: 18px;
	font-weight: 400;
	color: #3d5f71;
	max-width: 800px;
	line-height: 28.8px;
	letter-spacing: 0.02em;
}

.change-section > h2,
.change-section > p {
	max-width: 540px;
	text-align: left;
}

.change-section-middle {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
}

.change-section-middle-line {
	display: flex;
	flex-direction: row;
	height: 8px;
	flex: 1;
}

.change-section-middle-line > div {
	flex: 1;
}

.change-section-middle-line > div:first-child {
	background: #51c0c1;
}

.change-section-middle-line > div:last-child {
	background: #f86355;
}

.change-section-middle-line > div:nth-child(2) {
	background: #ffbc2f;
}

.change-section-middle-buttons {
	padding-left: 36px;
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.change-section-middle-buttons img {
	padding: 10px;
	border-radius: 22px;
	border: 1px solid #e5e5e5;
	cursor: pointer;
}

.change-items {
	display: flex;
	justify-content: flex-start;
	gap: 40px;
	margin-top: 40px;
	width: 100%;
}

.change-item {
	background: #f3faff;
	padding: 40px 40px 0 40px;
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	flex: 1;
}

.change-item h3 {
	font-size: 24px;
	font-weight: 900;
	color: #0c2b3c;
	margin: 0;
}

.change-item p {
	font-size: 18px;
	font-weight: 400;
	color: #3d5f71;
	line-height: 1.6;
	margin-top: 0;
}

.career-callout {
	background-color: #00425f;
	color: white;
	text-align: center;
	padding: 60px 80px;
	background: url("../img/career-bg.svg");
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 32px;
	background-size: cover;
	margin-top: 80px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 40px;
}

.career-callout-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	flex: 1;
	gap: 20px;
}

.career-callout-button {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex: 1;
}

.career-callout-text > * {
	max-width: 400px;
	margin: 0;
	text-align: left;
}

.career-callout-text h3 {
	font-size: 40px;
	font-weight: 900;
	line-height: 46.92px;
	letter-spacing: 0.01em;
	color: #fff;
}

.career-callout p {
	font-family: Inter;
	font-size: 18px;
	font-weight: 400;
	line-height: 28.8px;
	letter-spacing: 0.02em;
	color: #fff;
}

.career-callout-button {
	padding: 12px 24px;
	border-radius: 8px;
	background: #0b5b7f;
	padding-block: 24px;
	text-decoration: none;
}

.career-button {
	background: #0b5b7f;
	color: white;
	border: none;
	font-family: Inter;
	font-size: 18px;
	font-weight: 700;
	line-height: 28.8px;
	letter-spacing: 0.02em;
}

.career-callout-button img {
	width: 20px;
	height: 20px;
}

.footer {
	background-color: #103950;
	color: white;
	padding: 40px 80px;
	text-align: center;
	background: url("../img/group-55176.png");
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
}

.footer-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	align-items: flex-start;
	gap: 32px;
}

.footer-content > *:not(.overlap-group4) {
	display: flex;
	justify-content: space-between;
}

.group-55175 {
	height: 90px;
	width: auto;
}

.group-2 {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	font-size: 18px;
	font-weight: 700;
	line-height: 21.11px;
	letter-spacing: 0.01em;
}

.group-7 {
	display: flex;
	flex-direction: row;
	gap: 24px;
}

.group-7 img {
	height: 22px;
	width: auto;
}

.overlap-group4 {
	width: 100%;
	height: 66px;
	background: #103950;
	display: flex;
	justify-content: center;
	align-items: center;
}

.group-2,
.overlap-group4 a {
	text-decoration: none;
	color: #fff;
}

.overlap-group4 a {
	text-decoration: underline;
}

.frame-55062 {
	max-width: 1280px;
	width: 100%;
	margin-inline: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-logo img {
	height: 63px;
}

.footer-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	margin: 0 10px;
}

.menu-icon {
	height: 0.875rem;
	width: auto;
	cursor: pointer;
	display: none;
}

.flip {
	transform: rotate(-180deg);
}

.dei-mobile-bg {
	display: none;
}

@media screen and (max-device-width: 1024px), screen and (max-width: 1024px) {
	.dei-section-grid,
	.values-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.dei-section {
		background-position: center;
	}

	.header {
		min-height: 100vh;
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
	}

	.navbar {
		flex: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 48px;
		width: unset;
		min-height: max-content;
	}

	.navbar,
	.nav-links {
		flex-direction: column;
		align-items: center;
	}

	.nav-links {
		padding: 0;
	}

	.logo {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 32px;
	}

	.hero {
		min-height: calc(100vh - 40px);
		padding: 0;
	}

	.core-values {
		margin-bottom: -1px;
		background-size: cover;
	}

	.core-values h2 {
		padding-inline: 16px;
		font-size: 24px;
		font-weight: 700;
		line-height: 28.15px;
		margin-block: 16px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.core-values h2 img {
		display: unset;
		height: 12px;
		width: auto;
		cursor: pointer;
	}

	.values-grid {
		margin-top: 0;
		display: none;
		padding-inline: 16px;
	}

	.value-card + .value-card {
		margin-top: 16px;
	}

	.hero-content {
		text-align: center;
		justify-content: center;
		padding-inline: 0;
		flex-direction: column;
	}

	.hero-text span:first-child {
		margin-bottom: 32px;
		display: block;
	}

	.hero-image img {
		max-width: calc(100vw - 32px);
		margin-bottom: 32px;
	}

	.hero-text {
		margin-top: 64px;
	}

	.hero-text span:last-child {
		font-size: 24px !important;
		line-height: 28.15px;
	}

	.core-values,
	.dei-section {
		padding: 0;
	}

	.dei-section {
		background: #fff;
	}

	.dei-section div:not(.change-section) h2 {
		margin: 0;
		font-size: 14px;
		font-weight: 700;
		line-height: 16.42px;
		letter-spacing: 0.08em;
	}

	.dei-section-grid {
		margin-top: 32px;
		padding-inline: 16px;
	}

	.dei-section h3 {
		margin-block: 24px;
		font-size: 32px;
		font-weight: 900;
		line-height: 37.54px;
		letter-spacing: 0.01em;
	}

	.dei-section-text {
		margin-inline: 0;
		max-width: calc(100vw - 32px);
	}

	.dei-images img:first-child {
		z-index: 4;
		margin-top: -24px;
	}

	.change-section {
		padding: 32px 16px;
		margin-top: 0;
		border-radius: 0;
	}

	.change-section h2 {
		font-size: 32px;
		font-weight: 900;
		line-height: 37.54px;
		letter-spacing: 0.01em;
	}

	.change-section p {
		font-family: Inter;
		font-size: 14px;
		font-weight: 400;
		line-height: 22.4px;
		letter-spacing: 0.02em;
	}

	.change-section-middle-buttons {
		padding-left: 24px;
	}

	.change-items {
		margin-top: 24px;
	}

	.change-item {
		padding: 16px 16px 0 16px;
		width: 100%;
	}

	.change-item img {
		width: 100%;
	}

	.change-item:not(:first-child) {
		display: none;
	}

	.change-item h3 {
		font-size: 24px;
		font-weight: 900;
		line-height: 28.15px;
		letter-spacing: 0.01em;
	}

	.change-item p {
		font-family: Inter;
		font-size: 14px;
		font-weight: 400;
		line-height: 22.4px;
		letter-spacing: 0.02em;
	}

	.dei-mobile-bg {
		display: unset;
		width: 100%;
		height: auto;
		margin-top: -24vw;
	}

	.career-callout {
		margin-block: 0 16px;
		padding: 48px 24px;
		flex-direction: column;
		margin-inline: 16px;
		background: url(../img/career-mobile.svg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		gap: 48px;
		border-radius: 16px;
		align-items: stretch;
	}

	.career-callout-text h3 {
		font-size: 32px;
		font-weight: 900;
		line-height: 37.54px;
		letter-spacing: 0.01em;
		margin-block: 0;
	}

	.career-callout-button {
		gap: 28px;
		border-radius: 12px;
		padding: 24px 32px;
	}

	.career-callout p {
		font-family: Inter;
		font-size: 14px;
		font-weight: 400;
		line-height: 22.4px;
		letter-spacing: 0.02em;
	}

	.career-button {
		font-family: Inter;
		font-size: 14px;
		font-weight: 700;
		line-height: 22.4px;
		letter-spacing: 0.02em;
	}

	.career-callout-button img {
		width: 14px;
		height: 14px;
	}

	.career-callout-text > * {
		max-width: unset;
	}

	.change-section > h2,
	.change-section > p {
		max-width: unset;
	}

	.footer {
		padding: 16px;
		background-position: right;
		background-size: auto 100%;
	}

	.group-55175 {
		max-width: 100%;
	}

	.overlap-group4 {
		padding: 16px;
		width: unset;
	}

	.frame-55062 {
		flex-direction: column;
		align-items: flex-start;
	}

	.frame-55062 > div > span:first-child {
		display: none;
	}

	.frame-55062 > * {
		margin-block: 8px;
	}
}
