/*
  Created by: Reed Turner - 1002059456
  Project: Personal Portfolio
*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");

:root {
	/* Grid */
	--number-of-columns: 12;
	--grid-width: calc(100% / var(--number-of-columns));
	--col-1: calc(var(--grid-width) * 1);
	--col-2: calc(var(--grid-width) * 2);
	--col-3: calc(var(--grid-width) * 3);
	--col-4: calc(var(--grid-width) * 4);
	--col-5: calc(var(--grid-width) * 5);
	--col-6: calc(var(--grid-width) * 6);
	--col-7: calc(var(--grid-width) * 7);
	--col-8: calc(var(--grid-width) * 8);
	--col-9: calc(var(--grid-width) * 9);
	--col-10: calc(var(--grid-width) * 10);
	--col-11: calc(var(--grid-width) * 11);
	--col-12: calc(var(--grid-width) * 12);

	/* Branding */
	--primary: hsl(202, 75%, 43%);
	--primary-hover: hsl(202, 75%, 53%);
	--secondary: hsl(353, 90%, 46%);
	--secondary-hover: hsl(353, 90%, 56%);
	--primary-blurred: hsl(202, 75%, 33%);
	--font-color: hsl(0, 0%, 98%);
	--yellow: hsl(57, 92%, 49%);
	--orange: hsl(24, 91%, 54%);
	--blue: hsl(202, 75%, 43%);
	--red: hsl(353, 90%, 46%);
	--purple: hsl(309, 38%, 62%);
	--green: hsl(95, 55%, 53%);

	--gray-0: #222222;
	--gray-1: #666666;
	--gray-2: #999999;
	--gray-3: #dadada;
	--gray-4: #efefef;

	--white: hsl(0, 0%, 98%);
	--footer-white: hsl(195, 50%, 86%);
	--_surfaceColorEnd: hsl(0 0% 10% / 0.9);
	--bg-color: hsl(0 0% 10% / 0);

	/*Typography/Other*/
	--table-padding: 1.618rem;
	--p: 1.333rem;
	--base-font-size: 16px;
	--base-scale: 1.618;
	--base-line-height: calc(1rem * var(--base-scale));
	--h4-font-size: 1rem;
	--h3-font-size: calc(1rem * var(--base-scale));
	--h2-font-size: calc(1rem * var(--base-scale) * var(--base-scale));
	--h1-font-size: calc(1rem * var(--base-scale) * var(--base-scale) * var(--base-scale));
}

* {
	box-sizing: border-box;
	position: relative;
}

html {
	font-size: var(--base-font-size);
	scroll-behavior: smooth;
}

body {
	padding: 0;
	margin: 0;
	font-size: 1rem;
	line-height: var(--base-line-height);
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	color: var(--white);
}

body::before {
	content: "";
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: -10;
	background: url(../images/Portfolio-BG-Master-Mobile.svg) no-repeat center center;
	background-size: cover;
}

/* Typography styles here */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	line-height: var(--base-line-height);
	color: var(--font-color);
}

p {
	font-size: 16px;
	letter-spacing: 0.5px;
	line-height: 26px;
}

.hero-p {
	margin-top: 2rem;
}

h1,
.h1 {
	font-size: var(--h1-font-size);
	color: var(--yellow);
	margin-bottom: 2rem;
	margin-top: 0.6rem;
	letter-spacing: -2px;
	line-height: 3.5rem;
}

.h1-margin {
	margin-top: 1rem;
}

h2,
.h2 {
	font-size: var(--h2-font-size);
}

h3,
.h3 {
	font-size: var(--h3-font-size);
}

h4,
.h4 {
	font-size: var(--h4-font-size);
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.right-margin {
	margin-right: 1rem;
}

.hero-title {
	font-family: "Poppins", sans-serif;
	margin-top: 0.5rem;
	margin-bottom: 2rem;
}

/* Mobile Hamburger Menu */
.menu {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.menu > li {
	overflow: hidden;
}

.menu-button-container {
	display: none;
	height: 100%;
	width: 30px;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#menu-toggle {
	display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
	display: block;
	background-color: var(--yellow);
	position: absolute;
	height: 5px;
	width: 30px;
	transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 10px;
}

.menu-button::before {
	content: "";
	margin-top: -8px;
}

.menu-button::after {
	content: "";
	margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
	margin-top: 0px;
	transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
	background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
	margin-top: 0px;
	transform: rotate(-405deg);
}

@media (max-width: 768px) {
	.menu-button-container {
		display: flex;
	}
	.menu {
		position: absolute;
		top: 0;
		margin-top: 4.3rem;
		left: 0;
		flex-direction: column;
		width: 100%;
		justify-content: center;
		align-items: center;
		z-index: 2;
		line-height: normal;
	}
	#menu-toggle ~ .menu li {
		height: 0;
		margin: 0;
		padding: 0;
		border: 0;
		transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
	}
	#menu-toggle:checked ~ .menu li {
		height: 4rem;
		padding: 0.5em;
		transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);

		&#border-radius {
			border-radius: 0 0 10px 10px;
		}
	}
	.menu > li {
		display: flex;
		justify-content: center;
		margin: 0;
		padding: 0.5em 0;
		width: 106%;
		background-color: hsl(0 0% 10% / 90%);
	}
}

/* To-Top Button */
.to-top {
	background: var(--primary);
	position: fixed;
	bottom: 6px;
	right: 8px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	text-decoration: none;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
	filter: drop-shadow(0 0px 3.5px rgb(255, 255, 255));
	border: 3px solid var(--primary);
}

.to-top:hover {
	background-color: hsl(0 0% 10% / 100%);
}

.to-top.active {
	bottom: 32px;
	pointer-events: auto;
	opacity: 1;
}

.to-top i {
	color: hsl(0 0% 10% / 100%);
}

.to-top:hover i {
	color: var(--primary);
}

/* Navigation CSS for Sticky/Disappearing Navbar */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	background: var(--bg-color);
	z-index: 9999;
	transition: all 300ms ease-in-out;
}

.scroll-down {
	header {
		transform: translate3d(0, -100%, 0);
	}
}

.scroll-up {
	header {
		filter: drop-shadow(0 0px 10px rgb(170, 170, 170));
	}
}

.menu-is-open {
	overflow: hidden;

	header {
		filter: none;
	}
}

.padded {
	margin-top: 5.7rem;
}

.pad-top {
	padding-top: 1rem;

	h1 {
		margin-top: 0;
	}
}

/* Images */
img {
	max-width: 100%;
	border-radius: 10px;
}

.article-img {
	overflow: hidden;
	aspect-ratio: 1;
}

.article-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-img img {
	float: right;
	max-width: 220px;
	shape-outside: circle(48% at 129px 135px);
	shape-margin: 1rem;
	margin-bottom: 1rem;
}

/* Case Study Study Styles */
.case-h2 {
	margin-top: 0.3rem;
}

/* Experience Styles */
.exp-h3 {
	margin-top: 0;
	margin-bottom: 0;
}

.exp-h4 {
	margin-top: 0;
}

.article-title {
	margin-bottom: 0;
}

.article {
	padding-top: 2rem;
	margin: 0;
}

/* Blockquotes */
blockquote {
	font-size: calc(1rem * var(--base-scale));
}

blockquote p:first-of-type::before {
	content: open-quote;
}

blockquote p:last-of-type::after {
	content: close-quote;
}

blockquote.text-center {
	text-align: center;
}

blockquote.text-right {
	text-align: right;
}

blockquote footer {
	font-size: 1rem;
	font-weight: 700;
}

blockquote footer::before {
	content: "\2014";
	margin-right: calc(0.25rem * var(--base-scale));
}

.quote-center {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.quote {
	background-color: var(--white);
}

/* List styles */
.skill-column {
	display: flex;
	flex-flow: column;
}

ul.unstyled {
	list-style-type: none;
	padding-left: 0;
}

ul {
	list-style-type: disc;
	padding-left: var(--base-line-height);
}

#phone::before {
	content: "\f095";
	margin-right: calc(0.25rem * var(--base-scale));
}

.links {
	overflow: hidden;
	max-width: fit-content;
	padding: calc((1em / var(--base-scale)) / var(--base-scale) / var(--base-scale)) 0;
	color: var(--primary);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	font-weight: 700;
	transition-duration: 0.3s;
}

.links:hover {
	color: var(--font-color);
	border-bottom-color: var(--primary);
}

ul.inline {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
}

ul.inline li {
	margin-right: 1rem;
}

ul.inline li:last-of-type {
	margin-right: 0;
}

dl {
	border-left: 4px solid black;
	padding: var(--base-line-height);
	padding-right: 0;
}

dt {
	font-weight: bold;
}

dd {
	font-style: italic;
	margin-bottom: var(--base-line-height);
}

dd:last-of-type {
	margin-bottom: 0;
}

/* Navigation Styles */
.navbar {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	align-content: flex-start;
	height: 70px;
	margin-top: 0.2rem;
}

.navbar-brand {
	display: block;
	overflow: hidden;
	background: url(../images/reed-SVG.svg) no-repeat left/contain transparent;
	width: 10rem;
	height: 4rem;
	text-indent: -9999px;
	text-decoration: none;
}

.navigation {
	flex: 0 0 100%;
}

.navbar-nav li > a {
	color: var(--blue);
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: 0.5px;
	display: block;
	text-align: center;
	overflow: hidden;
	text-decoration: none;
	border-bottom: 3px solid transparent;
	transition-duration: 0.3s;
	margin-right: 1rem;
}

.navbar-nav li.active > a {
	border-bottom-color: var(--secondary);
	text-align: center;
}

.navbar-nav li > a:hover {
	color: var(--white);
	border-color: var(--primary);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

i {
	color: var(--font-color);
}
/* *End of Navigation Styles */

/* Forms */
fieldset {
	padding: var(--base-line-height) 0;
	font-family: "Montserrat", "Roboto", sans-serif;
}

fieldset legend {
	color: var(--primary);
}

.form-group {
	margin-bottom: var(--base-line-height);
}

fieldset .form-group:last-of-type {
	margin-bottom: 0;
}

.form-group label {
	font-weight: bold;
}

.form-control {
	margin-top: calc(var(--base-line-height) / 3);
}

.form-control,
.form-check-input {
	accent-color: var(--secondary);
}

.mailing-list {
	margin-bottom: var(--base-line-height);
}

input,
select,
textarea {
	font-family: inherit;
	font-size: 1rem;
	line-height: var(--base-line-height);
	padding: calc((1em / var(--base-scale)) / var(--base-scale) / var(--base-scale))
		calc(1em / var(--base-scale) / var(--base-scale));
	border: 1px solid var(--font-color);
	color: var(--font-color);
	width: 100%;
	border-radius: 10px;
}

input.form-control {
	width: 100%;
	max-width: 100%;
}

textarea {
	width: 100%;
	max-width: 100%;
	min-height: calc(6 * var(--base-line-height));
}

/* Footer Styles */
footer {
	font-size: calc(1rem / var(--base-scale));
}

footer h3,
footer h4 {
	margin-bottom: calc(1rem / var(--base-scale));
}

footer .footer-nav {
	margin: 0;
	padding-top: calc(var(--base-line-height) / 3);
}

footer .footer-nav a {
	display: block;
	overflow: hidden;
	font-size: var(--h4-font-size);
	line-height: 32px;
	max-width: fit-content;
	color: var(--font-color);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	font-weight: 700;
	transition-duration: 0.3s;
}

footer .footer-nav a:hover {
	color: var(--font-color);
	border-bottom-color: var(--font-color);
}

footer .form-group label {
	margin-top: 0;
}

footer .copyright .container {
	font-weight: 700;
	font-size: var(--base-font-size);
	padding: 0;
}

footer .social-media li {
	scale: 1.5;
	padding: 0 0.5rem;
}
footer .social-media li:hover {
	scale: 1.5;
	color: var(--tertiary);
}

.copyright-text {
	font-size: calc(var(--base-font-size) / 1.2);
}

footer .copyright-text {
	text-align: center;
}

footer .social-media {
	justify-content: center;
}

footer p,
footer .social-media {
	margin: 0;
	max-width: 100%;
	width: 100%;
	padding-top: calc(var(--base-line-height) / 3);
}

footer .social-media a {
	display: block;
	overflow: hidden;
}

.footer-menu a {
	color: var(--font-color);
}

ul.inline.footer-nav {
	justify-content: center;
}

.foot.row {
	text-align: center;
}
/* End of Footer Styles */

/* Pseudo Selectors */
.form-control:focus {
	outline: var(--primary-hover) solid 2px;
}

.form-check-input:checked {
	box-shadow: 0 0 4px 4px var(--primary-hover);
}

.form-control:disabled,
.form-control:hover:disabled,
input:disabled,
input:hover:disabled {
	background-color: var(--gray-3);
	color: var(--gray-2);
	cursor: not-allowed;
}

input:invalid,
input:focus:invalid {
	border-color: red;
	box-shadow: 0 0 2px red;
	outline: red solid 2px;
}

/* Flex Styles */
.container-fluid,
.container {
	background-color: hsl(0 0% 10% / 90%);
	border-radius: 10px;
	width: 100%;
	padding: 1rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.25rem;
	overflow: hidden;
}

.container.no-bottom {
	border-radius: 0 0 10px 10px;
}

.no-bottom {
	margin-bottom: 0.3rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0;
	padding-bottom: 0;
	overflow: visible;
}

.no-bg {
	background-image: none;
	background: none;
}

.row {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	margin-left: -1rem;
	margin-right: -1rem;
}

.row.reverse {
	flex-direction: row;
}

.center {
	align-self: center;
}

[class^="col-"] {
	padding: 0 1rem;
	width: 100%;
	max-width: 100%;
	border: 0px solid black;
}

/* Buttons */
.btn {
	display: inline-block;
	overflow: hidden;
	font-size: 1rem;
	font-weight: 700;
	min-width: fit-content;
	line-height: var(--base-line-height);
	padding: 1rem var(--base-line-height);
	text-decoration: none;
	cursor: pointer;
	background-color: var(--gray-0);
	color: var(--white);
	border: 3px solid var(--primary);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: box-shadow, background-color;
	transition-property: box-shadow, background-color;
}

.btn:hover,
.btn:focus,
.btn:active {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.btn:hover {
	background-color: var(--gray-1);
}

.btn.btn-primary {
	background-color: var(--primary);
	color: var(--white);
}

.btn.btn-primary:hover {
	background-color: hsl(0 0% 10% / 1);
	color: var(--white);
}

.btn.btn-secondary {
	background-color: var(--secondary);
	color: var(--white);
	border: 3px solid var(--secondary);
}

.btn.btn-secondary:hover {
	background-color: hsl(0 0% 10% / 1);
	color: var(--white);
}

.btn.btn-tertiary {
	background-color: var(--tertiary);
	color: var(--gray-0);
}

.btn.btn-tertiary:hover {
	background-color: var(--tertiary-hover);
	color: var(--white);
}

.btn.btn-sm {
	font-size: calc(1rem / var(--base-scale));
}

.btn.btn-lg {
	font-size: var(--h3-font-size);
}

.btn-i {
	color: var(--white);
	padding-left: 0.5rem;
}
.btn-i:hover {
	color: var(--white);
}

.hero-btn {
	margin-top: 1.7rem;
	width: 100%;
	text-align: center;
	min-width: fit-content;
}

#submit {
	width: 50%;
	min-width: fit-content;
}

.col-xs-12 .proj-btn {
	display: block;
	text-align: center;
	width: 33%;
	margin-top: 2.5rem;
}
/* End of Branding/Buttons */

/* Grid System */
.col-xs-1 {
	flex: 0 0 var(--col-1);
	max-width: var(--col-1);
}

.col-xs-2 {
	flex: 0 0 var(--col-2);
	max-width: var(--col-2);
}

.col-xs-3 {
	flex: 0 0 var(--col-3);
	max-width: var(--col-3);
}

.col-xs-4 {
	flex: 0 0 var(--col-4);
	max-width: var(--col-4);
}

.col-xs-5 {
	flex: 0 0 var(--col-5);
	max-width: var(--col-5);
}

.col-xs-6 {
	flex: 0 0 var(--col-6);
	max-width: var(--col-6);
}

.col-xs-7 {
	flex: 0 0 var(--col-7);
	max-width: var(--col-7);
}

.col-xs-8 {
	flex: 0 0 var(--col-8);
	max-width: var(--col-8);
}

.col-xs-9 {
	flex: 0 0 var(--col-9);
	max-width: var(--col-9);
}

.col-xs-10 {
	flex: 0 0 var(--col-10);
	max-width: var(--col-10);
}

.col-xs-11 {
	flex: 0 0 var(--col-11);
	max-width: var(--col-11);
}

.col-xs-12 {
	flex: 0 0 var(--col-12);
	max-width: var(--col-12);
}

/* *Styles for 'col-sm-...' grid */
@media screen and (min-width: 576px) {
	h1,
	.h1 {
		line-height: 3.3rem;
	}

	.hero-img img {
		max-width: 250px;
	}

	.container {
		max-width: 576px;
	}

	.col-sm-1 {
		flex: 0 0 var(--col-1);
		max-width: var(--col-1);
	}

	.col-sm-2 {
		flex: 0 0 var(--col-2);
		max-width: var(--col-2);
	}

	.col-sm-3 {
		flex: 0 0 var(--col-3);
		max-width: var(--col-3);
	}

	.col-sm-4 {
		flex: 0 0 var(--col-4);
		max-width: var(--col-4);
	}

	.col-sm-5 {
		flex: 0 0 var(--col-5);
		max-width: var(--col-5);
	}

	.col-sm-6 {
		flex: 0 0 var(--col-6);
		max-width: var(--col-6);
	}

	.col-sm-7 {
		flex: 0 0 var(--col-7);
		max-width: var(--col-7);
	}

	.col-sm-8 {
		flex: 0 0 var(--col-8);
		max-width: var(--col-8);
	}

	.col-sm-9 {
		flex: 0 0 var(--col-9);
		max-width: var(--col-9);
	}

	.col-sm-10 {
		flex: 0 0 var(--col-10);
		max-width: var(--col-10);
	}

	.col-sm-11 {
		flex: 0 0 var(--col-11);
		max-width: var(--col-11);
	}

	.col-sm-12 {
		flex: 0 0 var(--col-12);
		max-width: var(--col-12);
	}
}

/* *Styles for 'col-md-...' grid */
@media screen and (min-width: 768px) {
	.to-top {
		right: 16px;
		bottom: 16px;
	}

	.row.reverse {
		flex-direction: row-reverse;
	}

	footer .copyright-text {
		justify-content: flex-start;
		text-align: unset;
	}

	footer .social-media {
		justify-content: flex-end;
	}

	.navbar-toggler {
		display: none;
	}

	.navigation {
		flex: 0 0 auto;
	}

	.container {
		max-width: 768px;
	}

	.col-md-1 {
		flex: 0 0 var(--col-1);
		max-width: var(--col-1);
	}

	.col-md-2 {
		flex: 0 0 var(--col-2);
		max-width: var(--col-2);
	}

	.col-md-3 {
		flex: 0 0 var(--col-3);
		max-width: var(--col-3);
	}

	.col-md-4 {
		flex: 0 0 var(--col-4);
		max-width: var(--col-4);
	}

	.col-md-5 {
		flex: 0 0 var(--col-5);
		max-width: var(--col-5);
	}

	.col-md-6 {
		flex: 0 0 var(--col-6);
		max-width: var(--col-6);
	}

	.col-md-7 {
		flex: 0 0 var(--col-7);
		max-width: var(--col-7);
	}

	.col-md-8 {
		flex: 0 0 var(--col-8);
		max-width: var(--col-8);
	}

	.col-md-9 {
		flex: 0 0 var(--col-9);
		max-width: var(--col-9);
	}

	.col-md-10 {
		flex: 0 0 var(--col-10);
		max-width: var(--col-10);
	}

	.col-md-11 {
		flex: 0 0 var(--col-11);
		max-width: var(--col-11);
	}

	.col-md-12 {
		flex: 0 0 var(--col-12);
		max-width: var(--col-12);
	}
}

/* *Styles for 'col-lg-...' grid */
@media screen and (min-width: 992px) {
	body::before {
		background-image: url(../images/XL-BG.svg);
	}

	.h1-margin {
		margin-top: 0;
	}

	.hero-btn {
		margin-top: 1rem;
		width: 33%;
	}

	.hero-img img {
		max-width: 325px;
		shape-outside: circle(50%);
		shape-margin: 2rem;
		margin-left: 1rem;
	}

	.container {
		max-width: 992px;
	}

	.col-lg-1 {
		flex: 0 0 var(--col-1);
		max-width: var(--col-1);
	}

	.col-lg-2 {
		flex: 0 0 var(--col-2);
		max-width: var(--col-2);
	}

	.col-lg-3 {
		flex: 0 0 var(--col-3);
		max-width: var(--col-3);
	}

	.col-lg-4 {
		flex: 0 0 var(--col-4);
		max-width: var(--col-4);
	}

	.col-lg-5 {
		flex: 0 0 var(--col-5);
		max-width: var(--col-5);
	}

	.col-lg-6 {
		flex: 0 0 var(--col-6);
		max-width: var(--col-6);
	}

	.col-lg-7 {
		flex: 0 0 var(--col-7);
		max-width: var(--col-7);
	}

	.col-lg-8 {
		flex: 0 0 var(--col-8);
		max-width: var(--col-8);
	}

	.col-lg-9 {
		flex: 0 0 var(--col-9);
		max-width: var(--col-9);
	}

	.col-lg-10 {
		flex: 0 0 var(--col-10);
		max-width: var(--col-10);
	}

	.col-lg-11 {
		flex: 0 0 var(--col-11);
		max-width: var(--col-11);
	}

	.col-lg-12 {
		flex: 0 0 var(--col-12);
		max-width: var(--col-12);
	}
}

/* *Styles for 'col-xl-...' grid */
@media screen and (min-width: 1200px) {
	.cv-btn {
		margin-left: 1rem;
	}
	.container {
		max-width: 1200px;
	}

	.col-xl-1 {
		flex: 0 0 var(--col-1);
		max-width: var(--col-1);
	}

	.col-xl-2 {
		flex: 0 0 var(--col-2);
		max-width: var(--col-2);
	}

	.col-xl-3 {
		flex: 0 0 var(--col-3);
		max-width: var(--col-3);
	}

	.col-xl-4 {
		flex: 0 0 var(--col-4);
		max-width: var(--col-4);
	}

	.col-xl-5 {
		flex: 0 0 var(--col-5);
		max-width: var(--col-5);
	}

	.col-xl-6 {
		flex: 0 0 var(--col-6);
		max-width: var(--col-6);
	}

	.col-xl-7 {
		flex: 0 0 var(--col-7);
		max-width: var(--col-7);
	}

	.col-xl-8 {
		flex: 0 0 var(--col-8);
		max-width: var(--col-8);
	}

	.col-xl-9 {
		flex: 0 0 var(--col-9);
		max-width: var(--col-9);
	}

	.col-xl-10 {
		flex: 0 0 var(--col-10);
		max-width: var(--col-10);
	}

	.col-xl-11 {
		flex: 0 0 var(--col-11);
		max-width: var(--col-11);
	}

	.col-xl-12 {
		flex: 0 0 var(--col-12);
		max-width: var(--col-12);
	}
}
