 @charset "utf-8";

/* ROOT */

:root {
	--black: #0E0E10;
	--white: #ECECE7;
	--grey: #7F868A;
}

:root {
    --space-mono-regular-case: "case" on;
}

/* GLOBAL */

html, body {
	line-height: 0;
	min-width: calc(0.9 * 360px);
	scroll-snap-type: y mandatory;
}

body {
	background-color: var(--black);
	max-width: 90dvw;
	margin: 0 auto;
}

#page {
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: minmax(0, 1fr);
	line-height: 1.2;
	min-height: 100dvh;
	scroll-snap-align: end;
}

#logo {
	scroll-snap-align: start;
}

:focus-visible {
	outline: solid 0.25rem;
	outline-color: var(--white);
	outline-offset: 0.25rem;
}

:hover:focus-visible {
	outline-color: var(--grey);
}

img {
	pointer-events: none;
	user-drag: none;
	-webkit-user-drag: none;
}

/* TEXT */

@font-face {
	font-family: "Space Mono Regular";
	src: url("/misc/SpaceMono-Regular.ttf");
}

html, a, textarea, input {
	font-family: "Space Mono Regular", monospace;
	font-feature-settings: var(--space-mono-regular-case);
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	color: var(--white);
	text-decoration: none;
}

a:hover, .action:hover, span[role="button"]:hover {
	color: var(--grey);
}

p {
	margin-block-start: 0;
	margin-block-end: 0;
}

.grey-text {
	color: var(--grey) !important;
}

.grey-text a:hover {
	color: var(--white) !important;
}

.active a, a.active {
	background-color: var(--white);
	color: var(--black);
}

.active a:hover, a.active:hover {
	background-color: var(--grey);
	color: var(--black) !important;
}

/* CURSOR */

* {
	cursor: url("/misc/cursor-white.png") 4 4, auto !important;
}

textarea, input {
	cursor: url("/misc/cursor-black.png") 4 4, auto !important;
}

.action, a, span[role="button"] {
	cursor: pointer;
}

.action-off {
	color: var(--grey);
	cursor: default;
}

/* SELECTION */

::selection {
	background-color: var(--white);
	color: var(--black);
}

textarea::selection, input::selection {
	background-color: var(--black);
	color: var(--white);
}

.grey-text::selection, .action-off::selection {
	background-color: var(--white);
	color: var(--grey);
}

::-moz-selection {
	background-color: var(--white);
	color: var(--black);
}

textarea::-moz-selection, input::-moz-selection {
	background-color: var(--black);
	color: var(--white);
}

.grey-text::-moz-selection, .action-off::-moz-selection {
	background-color: var(--white);
	color: var(--grey);
}

/* SCROLLBAR */

::-webkit-scrollbar {
	background-color: transparent;
	height: 0.5rem;
	width: 0.5rem;
}

.logofolio_1::-webkit-scrollbar {
	height: 0;
	width: 0;
}

::-webkit-scrollbar-corner {
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: var(--grey);
}

/* HEADER */

.header {
	display: flex;
	position: sticky;
	justify-content: space-between;
	top: 0;
	padding-top: 1rem;
	padding-bottom: 1rem;
	z-index: 10;
}

.header-left, .header-left_1, .header-left_2 {
	display: flex;
	flex-direction: row;
	white-space: nowrap;
}

.header-right {
	position: absolute;
	right: 0;
}

.header-right, .header-right_1, .header-right_2 {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	white-space: nowrap;
}

/* FOOTER */

.legal, .copyright {
	display: flex;
	justify-content: space-between;
	gap: 20%;
	z-index: 10;
}

.legal {
	position: sticky;
	bottom: 0;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.copyright {
	margin-top: -1rem;
	padding-bottom: 1rem;
}

.legal-static, .copyright-static {
	display: flex;
	justify-content: space-between;
	gap: 20%;
	z-index: 10;
}

.legal-static {
	position: sticky;
	bottom: 0;
	padding-top: 1rem;
	padding-bottom: 2.2rem;
}

.copyright-static {
	position: sticky;
	bottom: 0;
	margin-top: -2.2rem;
	padding-bottom: 1rem;
}

#terms-and-conditions, #copyright_2 {
	text-align: right;
}

/* HOME & ERROR */

.home, .error {
	display: flex;
	position: relative;
	height: 100%;
	white-space: pre-line;
}

.home-text, .error-text {
	order: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-height: 100%;
	min-width: 100%;
	margin-top: clamp(0, 3rem, 3rem);
	margin-bottom: clamp(0, 3rem, 3rem);
	margin-left: -100%;
	pointer-events: none;
	z-index: 1;
}

.home-text div, .error-text div {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.home-text p, .error-text p {
	pointer-events: auto;
}

.home-text > div {
	max-width: calc((100% / 3) - 2rem);
}

.home-text p > span, .error-text p > span {
	background-color: var(--black);
	padding-right: 0.25rem;
	padding-left: 0.25rem;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.home-text p > span > span, .error-text p > span > span {
	position: relative;
	color: var(--white);
}

.home #random-image, .error #random-image {
	order: 1;
	display: flex;
	position: sticky;
	height: calc(100dvh - 8rem);
	width: 100%;
	top: 3.4rem;
}

.home #random-image > div, .error #random-image > div {
	position: relative;
	width: 90dvw;
}

.home #random-image > div > div, .error #random-image > div > div {
	clip-path: inset(2px 0 0 0);
	height: calc(100dvh - 8rem);
	min-height: calc(100dvh - 8rem);
	width: 100%;
}

.home img, .error img {
	height: 100%;
	width: 100%;
	transform: translateZ(0);
	margin-top: -1.2rem;
	object-fit: cover;
}

/* ABOUT & FAQ */

.about, .faq {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	white-space: pre-line;
}

.about_1, .about_3, .faq_1, .faq_3 {
	margin-top: -1rem;
	margin-bottom: 2rem;
}

.about_2, .faq_2 {
	position: relative;
	z-index: 1;
}

.about_2 > div, .faq_2 > div {
	display: flex;
	position: sticky;
	height: calc(100dvh - 8rem);
	top: 3.4rem;
}

.about_2 > div > div, .faq_2 > div > div {
	clip-path: inset(2px 0 0 0);
	height: calc(100dvh - 8rem);
	width: 100%;
}

.about_2 img, .faq_2 img {
	height: 100%;
	width: 100%;
	transform: translateZ(0);
	margin-top: -1.2rem;
	object-fit: cover;
}

/* PORTFOLIO */

.portfolio {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.portfolio-preview-image {
	position: relative;
	aspect-ratio: 4/5;
	overflow: hidden;
}

.portfolio-preview-image img {
	width: 100%;
}

.portfolio-preview {
	display: flex;
	flex-direction: column;
}

.portfolio-preview:hover img {
	outline: 0.5rem solid var(--black);
	outline-offset: -0.5rem;
}

/* PROJECT PAGE */

.project {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	white-space: pre-line;
}

.project_1, .project_3 {
	position: relative;
	margin-top: -1rem;
}

.project_1 p > span {
	background-color: var(--black);
	padding-right: 0.25rem;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.project_1 p:first-of-type {
	margin-top: calc(-100dvh - -7rem);
}

.project_1 p:last-of-type {
	margin-bottom: -1.2rem;
}

.project_3 p:last-of-type {
	margin-bottom: -1rem;
}

.project-image {
	display: block;
	position: sticky;
	overflow: hidden;
	clip-path: inset(2px 0 0 0);
	height: calc(100dvh - 8rem);
	width: calc(150% + 1rem);
	top: 3.4rem;
	left: 0;
	z-index: -1;
}

.project-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.project_2 {
	display: flex;
	position: sticky;
	justify-content: center;
	align-items: center;
	height: calc(100dvh - 8rem);
	top: 3.4rem;
}

.project_2 img {
	max-height: 100%;
	z-index: -1;
}

#project-logo {
	max-height: 80dvh;
}

.project-colours {
	display: grid;
	position: absolute;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	height: 1rem;
	width: 100%;
	bottom: 1rem;
	border: 1px solid var(--grey);
}

.project-colours > div {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	height: 1rem;
}

/* LOGOFOLIO */

.logofolio {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	white-space: pre-line;
}

.logofolio_1 {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-x: scroll;
	overflow-y: hidden;
	justify-content: center;
	margin-bottom: 2rem;
	white-space: pre;
}

.logofolio-names {
	display: flex;
	flex-direction: row;
}

.logofolio_2 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(100dvh - 16rem);
	margin-top: 1rem;
	margin-bottom: 1rem;
}

#logofolio-logo {
	height: auto;
	width: 100%;
	max-height: 100%;
	max-width: 100%;
}

/* SERVICES & CV */

.services, .cv {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	white-space: pre-line;
}

.services_1, .services_3, .cv_1, .cv_3 {
	margin-top: -1rem;
	margin-bottom: 1rem;
}

.services_1, .cv_1 {
	position: relative;
	margin-bottom: 0;
	pointer-events: none;
	z-index: 2;
}

.services_1 p, .cv_1 p {
	overflow: visible;
	pointer-events: auto;
}

.services_1 p > span, .cv_1 p > span {
	background-color: var(--black);
	padding-right: 0.25rem;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.services_1 p > span > span, .cv_1 p > span > span {
	position: relative;
	color: var(--white);
}

.services_1 p:last-of-type {
	margin-bottom: -1.2rem;
}

.cv_1 p:last-of-type {
	margin-bottom: 0rem;
}

.services_2, .cv_2 {
	position: relative;
	z-index: 1;
}

.services_2 > div, .cv_2 > div {
	display: flex;
	position: sticky;
	height: calc(100dvh - 8rem);
	top: 3.4rem;
}

.services_2 > div > div, .cv_2 > div > div {
	position: absolute;
	clip-path: inset(2px 0 0 0);
	height: calc(100dvh - 8rem);
	width: calc(150% + 1rem);
	right: 0;
	z-index: -1;
}

.services_2 img, .cv_2 img {
	height: 100%;
	width: 100%;
	transform: translateZ(0);
	margin-top: -1.2rem;
	object-fit: cover;
}

#progress-bar {
	position: absolute;
	height: 0.5rem;
	width: 100%;
	bottom: 0;
	left: 0;
}

#progress-bar > div {
	background-color: var(--grey);
	height: 100%;
	width: 0%;
}

.services_2:hover img + #progress-bar, .cv_2:hover img + #progress-bar {
	width: calc(100% - 1rem);
	bottom: 0.5rem;
	left: 0.5rem;
}

.checklist, .contact {
	display: flex;
	flex-direction: column;
}

label {
	display: flex;
	flex-direction: row;
	margin-bottom: 0.5rem;
}

textarea, input {
	color: var(--black);
	width: calc(100% - 0.5rem);
	resize: none;
	background-color: var(--white);
	border-style: none;
	line-height: 1.2;
	margin-bottom: 0.5rem;
	padding: 0.25rem;
}

textarea {
	height: 20rem;
	max-height: 50dvh;
}

input {
	height: 1rem;
}

input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	display: grid;
	position: relative;
	width: 1rem;
	margin: 0;
	margin-right: 0.5rem;
	background-color: var(--white);
	border: 0.25rem solid transparent;
	box-sizing: border-box;
}

input[type="checkbox"]:checked {
	background-color: var(--grey);
	border: 0.25rem solid var(--black);
}

input[type="checkbox"]:hover {
	background-color: var(--grey);
}

form span[role="button"] {
	align-self: flex-start;
}

/* PRIVACY POLICY & TERMS AND CONDITIONS */

.privacy-policy, .terms-and-conditions {
	margin-top: -1rem;
	margin-bottom: 1rem;
	white-space: pre-line;
}

/* MEDIA QUERIES */

@media screen and (max-height: 520px) and (max-width: 360px) {
	/* GENERAL */
	body {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100dvh;
	}
	#page {
		display: none;
	}
	#logo {
		scroll-snap-align: auto;
	}
}

@media screen and (max-width: 360px) {
	/* GENERAL */
	html, body {
		overflow-x: auto;
		width: 360px;
	}
	body {
		overflow-x: hidden;
		transform: scale(calc(100dvw / 360));
		transform-origin: top left;
	}
	/* FOOTER */
	.legal, .copyright, .legal-static, .copyright-static {
		gap: 10%;
	}
	/* HOME & ERROR */
	.home #random-image > div, .error #random-image > div {
		width: auto;
	}
	.home img, .error img {
		width: auto;
	}
}

@media screen and (max-width: 480px) {
	/* HEADER */
	.header-left, .header-left_1, .header-left_2 {
		flex-direction: column;
		align-self: flex-start;
		width: auto;
		z-index: 10;
	}
	.header-right, .header-right_1, .header-right_2 {
		flex-direction: column-reverse;
		align-self: flex-start;
		text-align: right;
		width: 100%;
	}
	.header-right {
		position: absolute;
	}
	.header-left_1 {
		order: 1;
	}
	.header-left_2 {
		order: 2;
	}
	.header-right_1 {
		order: 2;
	}
	.header-right_2 {
		order: 1;
	}
	/* FOOTER */
	.legal-static {
		padding-bottom: 3.2rem;
	}
	.copyright-static {
		margin-top: -3.2rem;
	}
	/* HOME & ERROR */
	.home-text > div {
		max-width: calc(100% - 4rem);
	}
	.home #random-image, .error #random-image {
		height: calc(100dvh - 15rem);
		top: 8rem;
	}
	.home #random-image > div > div, .error #random-image > div > div {
		height: calc(100dvh - 15rem);
		min-height: calc(100dvh - 15rem);
	}
	/* ABOUT & FAQ */
	.about, .faq {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.about_1, .faq_1 {
		margin-top: -1rem;
		margin-bottom: 1rem;
	}
	.about_2 > div, .faq_2 > div {
		position: relative;
		height: 50dvh;
		top: auto;
		margin-top: -1rem;
	}
	.about_2 > div > div, .faq_2 > div > div {
		height: 100%;
		width: 100%;
	}
	.about_3, .faq_3 {
		margin-top: -1rem;
		margin-bottom: 2rem;
	}
	/* PORTFOLIO */
	.portfolio {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.align-right.portfolio > div:nth-child(odd) {
		grid-column: 1;
		text-align: left;
	}
	.align-right.portfolio > div:nth-child(even) {
		grid-column: 2;
		text-align: right;
	}
	/* PROJECT PAGE */
	.project {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		height: auto;
	}
	.project_1 {
		order: 2;
		margin-top: -1.2rem;
	}
	.project_1 p:first-of-type {
		margin-top: calc(-100dvh - -11rem);
	}
	.project_1 p:last-of-type {
		margin-bottom: -1.2rem;
	}
	.project_1 .project-image {
		height: calc(100dvh - 12rem);
		width: 100%;
		top: 8rem;
	}
	.project_2 {
		order: 1;
		position: auto;
		height: auto;
		top: auto;
		margin-bottom: 2rem;
	}
	.project-colours {
		bottom: -2rem;
	}
	.project_3 {
		order: 3;
		margin-bottom: 2rem;
	}
	/* LOGOFOLIO */
	.logofolio {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}
	.logofolio_1 {
		grid-row: 2;
	}
	.logofolio_2 {
		grid-row: 1;
		height: auto;
		max-height: calc(100dvh - 22rem);
	}
	/* SERVICES & CV */
	.services, .cv {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.services_2 > div, .cv_2 > div {
		position: relative;
		height: 50dvh;
		top: auto;
	}
	.services_2 > div > div, .cv_2 > div > div {
		height: 100%;
		width: 100%;
	}
}

@media screen and (max-width: 360px) {
	/* FOOTER */
	.legal, .copyright, .legal-static, .copyright-static {
		gap: 10%;
	}
}

@media screen and (min-width: 440px) and (max-width: 480px) {
	/* FOOTER */
	.legal, .copyright, .legal-static, .copyright-static {
		gap: 30%;
	}
}

@media screen and (min-width: 481px) and (max-width: 768px) {
	/* HEADER */
	.header-left, .header-left_1, .header-left_2 {
		flex-direction: column;
		align-self: flex-start;
		width: auto;
		z-index: 10;
	}
	.header-right, .header-right_1, .header-right_2 {
		flex-direction: column-reverse;
		align-self: flex-start;
		text-align: right;
		width: 100%;
	}
	.header-right {
		position: absolute;
	}
	.header-left_1 {
		order: 1;
	}
	.header-left_2 {
		order: 2;
	}
	.header-right_1 {
		order: 2;
	}
	.header-right_2 {
		order: 1;
	}
	/* FOOTER */
	.legal-static {
		padding-bottom: 3.2rem;
	}
	.copyright-static {
		margin-top: -3.2rem;
	}
	/* HOME & ERROR */
	.home-text > div {
		max-width: calc(100% - 2rem);
	}
	.home #random-image, .error #random-image {
		height: calc(100dvh - 15rem);
		top: 8rem;
	}
	.home #random-image > div > div, .error #random-image > div > div {
		height: calc(100dvh - 15rem);
		min-height: calc(100dvh - 15rem);
	}
	/* ABOUT & FAQ */
	.about, .faq {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.about_1, .faq_1 {
		margin-top: -1rem;
		margin-bottom: 1rem;
	}
	.about_2 > div, .faq_2 > div {
		position: relative;
		height: 50dvh;
		top: auto;
		margin-top: -1rem;
	}
	.about_2 > div > div, .faq_2 > div > div {
		height: 100%;
		width: 100%;
	}
	.about_3, .faq_3 {
		margin-top: -1rem;
		margin-bottom: 2rem;
	}
	/* PORTFOLIO */
	.portfolio {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		white-space: nowrap;
	}
	/* PROJECT PAGE */
	.project {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		height: auto;
	}
	.project_1 {
		order: 2;
		margin-top: -1.2rem;
	}
	.project_1 p:first-of-type {
		margin-top: calc(-100dvh - -11rem);
	}
	.project_1 p:last-of-type {
		margin-bottom: -1.2rem;
	}
	.project_1 .project-image {
		height: calc(100dvh - 12rem);
		width: 100%;
		top: 8rem;
	}
	.project_2 {
		order: 1;
		position: auto;
		height: auto;
		top: auto;
		margin-bottom: 2rem;
	}
	.project-colours {
		bottom: -2rem;
	}
	.project_3 {
		order: 3;
		margin-bottom: 2rem;
	}
		/* LOGOFOLIO */
	.logofolio {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}
	.logofolio_1 {
		grid-row: 2;
	}
	.logofolio_2 {
		grid-row: 1;
		height: auto;
		max-height: calc(100dvh - 22rem);
	}
	/* SERVICES & CV */
	.services, .cv {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.services_2 > div, .cv_2 > div {
		position: relative;
		height: 50dvh;
		top: auto;
	}
	.services_2 > div > div, .cv_2 > div > div {
		height: 100%;
		width: 100%;
	}
}

@media screen and (min-width: 481px) and (max-width: 580px) {
	/* FOOTER */
	.legal, .copyright, .legal-static, .copyright-static {
		gap: 40%;
	}
}

@media screen and (min-width: 581px) and (max-width: 700px) {
	/* FOOTER */
	.legal, .copyright, .legal-static, .copyright-static {
		gap: 50%;
	}
}

@media screen and (min-width: 701px) and (max-width: 768px) {
	/* FOOTER */
	.legal, .copyright, .legal-static, .copyright-static {
		gap: 55%;
	}
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
	/* HEADER */
	.header-left {
		flex-wrap: wrap;
		align-self: flex-start;
		align-items: flex-end;
		width: 50%;
	}
	.header-right {
		flex-wrap: wrap;
		align-self: flex-start;
		text-align: right;
		align-items: flex-end;
		width: 50%;
	}
	.header-left_1 {
		order: 1;
		flex-basis: 100%;
	}
	.header-left_2 {
		order: 2;
		flex-basis: 100%;
	}
	.header-right_1 {
		order: 1;
		flex-basis: 100%;
	}
	.header-right_2 {
		order: 2;
		flex-basis: 100%;
	}
	/* HOME & ERROR */
	.home-text > div {
		max-width: 50%;
	}
	.home #random-image, .error #random-image {
		height: calc(100dvh - 9rem);
		top: 4.4rem;
	}
	.home #random-image > div > div, .error #random-image > div > div {
		height: calc(100dvh - 9rem);
		min-height: calc(100dvh - 9rem);
	}
	/* ABOUT & FAQ */
	.about, .faq {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
			"a b"
			"c c";
	}
	.about > :nth-child(1), .faq > :nth-child(1) {
		grid-area: a;
	}
	.about > :nth-child(2), .faq > :nth-child(2) {
		grid-area: c;
	}
	.about > :nth-child(3), .faq > :nth-child(3) {
		grid-area: b;
	}
	.about_1, .faq_1 {
		margin-top: -1rem;
		margin-bottom: 1rem;
		order: 1;
	}
	.about_2 > div, .faq_2 > div {
		order: 3;
		position: relative;
		height: 50dvh;
		top: auto;
		margin-top: -2rem;
		margin-bottom: 1rem;
	}
	.about_2 > div > div, .faq_2 > div > div {
		height: 100%;
		width: 100%;
	}
	.about_3, .faq_3 {
		margin-top: -1rem;
		margin-bottom: 2rem;
		order: 2;
	}
	.about > *:last-child, .faq > *:last-child {
		grid-column: span 2;
	}
	/* PROJECT PAGE */
	.project {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
			"a a"
			"b c";
	}
	.project > :nth-child(1) {
		grid-area: b;
	}
	.project > :nth-child(2) {
		grid-area: a;
	}
	.project > :nth-child(3) {
		grid-area: c;
	}
	.project_1 {
		order: 2;
		margin-top: -1rem;
		margin-bottom: 1rem;
	}
	.project_1 p:last-of-type {
		margin-bottom: -1.4rem;
	}
	.project-image {
		height: calc (100dvh - 8rem);
		width: 100%;
		top: 4.6rem;
	}
	.project_2 {
		order: 1;
		position: auto;
		height: auto;
		top: auto;
		margin-bottom: 2rem;
	}
	.project-colours {
		bottom: -2rem;
	}
	.project_3 {
		order: 3;
		margin-bottom: 2rem;
	}
	/* LOGOFOLIO */
	.logofolio_2 {
		height: calc(100dvh - 17rem);
	}
	/* SERVICES & CV */
	.services, .cv {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
			"a b"
			"c c";
	}
	.services > :nth-child(1), .cv > :nth-child(1) {
		grid-area: a;
	}
	.services > :nth-child(2), .cv > :nth-child(2) {
		grid-area: b;
	}
	.services > :nth-child(3), .cv > :nth-child(3) {
		grid-area: c;
	}
	.services_2 > div, .cv_2 > div {
		top: 4.4rem;
	}
}