@charset "utf-8";
@import url("bootscrap.css");

* {
	-webkit-font-smoothing: antialiased;

}

/**
Classes
**/

@media (max-width: 768px) {
	body {
		background-color: #0A1828;
	}

	h1 {
		font-size: 1.5em;
	}

	/* Add more styles as needed */
}


body {
	text-rendering: optimizeLegibility;
	height: 100%;
	margin: 0px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	/* background-color: #0A1828; */

	background: linear-gradient(to bottom, #0A1828, #0f243c);
	 
}

a {
	font-weight: 400;
	text-decoration: none;
	color: #28e7e1;
	position: relative;
}

a:hover {
	text-decoration: none;
	color: #178582;
	cursor: pointer;
}

a.hoverline:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	height: 3px;
	border-bottom: 1px solid #178582;
	visibility: hidden;
	opacity: 0;
	width: 0px;
	/*transform: scale(0,1);*/
	transition: all 0.3s ease;
}

a.hoverline:hover:before {
	visibility: visible;
	opacity: 1;
	color: rgba(0, 0, 0, 1);
	bottom: 0px;
	border-bottom: 1px solid #178582;
	width: 100%;
	/*transform: scale(1,1);*/
}

.tar {
	text-align: right;
}

.tal {
	text-align: left;
}

.tac {
	text-align: center;
}

.inline {
	display: inline-block;
}

.block {
	display: block;
}

.align-self-center {
	align-self: center;
}

.mt10 {
	margin-top: 10px;
}

.mt40 {
	margin-top: 40px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb80 {
	margin-bottom: 80px;
}

.imageMargin {
	margin: 60px 0px;
}

.shadow {
	-webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}


/**
Styles
**/

/*------------- NAV -------------*/


.primary-nav {
	background-color: #0A1828;
	padding: 15px 0;
	width: 100%;
	height: 80px;
	position: fixed;
	z-index: 50;
	top: 0;
}

.nav-items {
	display: flex;
	justify-content: space-between;
}

.geebee2 {
	font-size: 20px;
	font-weight: 600;
	color: #178582;
	text-transform: uppercase;
	letter-spacing: 3px;
	display: inline-block;
	transition: 0.3s ease;
}

/* Media query for screens smaller than 600px */
@media (max-width: 600px) {
	.geebee2 {
		font-size: 16px;
		font-weight: 400;
	}
}


.geebee2:hover {
	color: #b1e9fc;
}

.geebee2:after {
	content: '';
	display: block;
	color: white;
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 0%;
	border-bottom: 1px solid #fff;
	transition: 0.4s;
}

.geebee2:hover:after {
	width: 100%;
}

.geebee2.about {
	float: right;
	color: #178582;
}

.geebee2.about:after {
	border-bottom: 1px solid rgba(255, 204, 115, 1);
}

.geebee2.about:hover {
	color: rgba(255, 204, 115, 1);
}

/* === TOP MENU LAYOUT === */
/* ======================= */

nav {
	color: #333;
	position: absolute;
	top: 0;
	width: 100%;
	height: 62px;
	/* smaller height because font is smaller */
	/*padding-top: 8px;*/
	right: 0;
	z-index: 1000;
	overflow: hidden;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-transition: -webkit-transform .4s, height .3s, background .4s;
	-moz-transition: -moz-transform .4s, height .3s, background .4s;
	transition: transform .4s, height .3s, background .4s;
	-webkit-animation: firstFadeInAndDrop .5s;
	-moz-animation: firstFadeInAndDrop .5s;
	animation: firstFadeInAndDrop .5s;
}

/* on intial load fade in the menu */
@-webkit-keyframes firstFadeInAndDrop {
	0% {
		-webkit-transform: translate(0, -70px);
	}

	100% {
		-webkit-transform: translate(0, 0);
	}
}

@-moz-keyframes firstFadeInAndDrop {
	0% {
		-moz-transform: translate(0, -70px);
	}

	100% {
		-moz-transform: translate(0, 0);
	}
}

@keyframes firstFadeInAndDrop {
	0% {
		transform: translate(0, -70px);
	}

	100% {
		transform: translate(0, 0);
	}
}



/* when hidden it goes up */
nav.invisible {
	-webkit-transform: translate(0, -80px);
	-moz-transform: translate(0, -80px);
	-o-transform: translate(0, -80px);
	transform: translate(0, -80px);
	-webkit-transition: -webkit-transform .3s;
	-moz-transition: -moz-transform .3s;
	-o-transition: -o-transform .3s;
	transition: transform .3s;

}

/* when shown & detached position is fixed */
nav.detached {
	position: fixed;
	/*background: rgba(0,0,0,.9);*/
	-webkit-transition: -webkit-transform .3s, height .3s, background .4s, opacity .3s;
	-moz-transition: -moz-transform .3s, height .3s, background .4s, opacity .3s;
	-o-transition: -o-transform .3s, height .3s, background .4s, opacity .3s;
	transition: transform .3s, height .3s, background .4s, opacity .3s;
}

.invisible {
	visibility: visible;
}


/*------------- HOME -------------*/


.intro {
	background-color: #0A1828;
	padding: 80px 0px 40px 0px;
}

.intro-hover {
	background: url("../images/hay_bw.gif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right center;
	background-blend-mode: overlay;
	background-color: #0A1828;
}


.title1 {
	display: inline-block;
	font-family: "Source Sans Pro";
	font-weight: 600;
	font-size: 35px;
	line-height: 1.2;
	color: #869ba9;
	margin-top: 50px;
	margin-left: -8px;
	text-shadow: 0px 25px 25px rgba(0, 0, 0, 0.2);
}

.p {
	font-size: 20px;
	line-height: 20px;
}

/* .title1 span {
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s ease;
} */

/* .title1 span:hover {
	color: rgba(255, 255, 255, 1);
} */

.title2 {
	font-weight: 400;
	font-size: 35px;
	line-height: 1;
	color: #deb992;
	margin-top: 10px;
	margin-bottom: 10px;
}

.title3 {
	font-weight: 300;
	font-size: 24px;
	line-height: 1.6;
	color: #deb992;
	margin-top: 10px;
}

.title4 {
	font-weight: 400;
	/*font-style: italic;*/
	font-size: 14px;
	line-height: 1.6;
	color: #deb992;
	margin-top: 60px;
}

.tooltip {
	position: relative;
	display: inline-block;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4) 40%, rgba(255, 255, 255, 0) 20%);
	background-position: bottom;
	background-size: 5px 2px;
	background-repeat: repeat-x;
	transition: all 0.3s ease;
}

.tooltip:hover {
	/* background-position: 0 32px; */
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 40%, rgba(255, 255, 255, 0) 20%);
}

.tooltip2 {
	position: relative;
	display: inline-block;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0) 20%);
	background-position: 0 110px;
	background-size: 5px 2px;
	background-repeat: repeat-x;
	transition: all 0.3s ease;
}

.tooltip2:hover {
	/* background-position: 0 160px; */
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0) 20%);
}

.tooltip:hover .message {
	opacity: 1;
	margin-bottom: 5px;
	visibility: visible;
}

.message {
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-ms-transform-origin: center center;
	-o-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	position: absolute;
	bottom: 100%;
	white-space: nowrap;
	margin-left: 23px;
	opacity: 0;
	background: rgba(0, 0, 0, 0.8);
	color: #869ba9;
	font-size: 14px;
	padding: 10px;
	visibility: hidden;
}

.message:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -3px;
}

/* jQuery enabled behavior for mobile */
.touch .container.no-hover .details {
	display: none !important;
}


.work {
	padding: 20px 0px;
}

.preview-row {
	margin-bottom: 60px;
	background-color: white;
}

.preview-row img {
	transition: all 0.3s ease;
}

.preview-row:hover img {
	transform: scale(1.05, 1.05)
}

.preview-info {
	/*height: 220px;*/
	padding: 20px 0px;

}

.block {
	height: 220px;
	width: 100%;
	background-color: #0A1828;
}

.preview-title {
	font-size: 18px;
	font-weight: 700;
	color: #deb992;
	position: relative;
	display: inline-block;
	width: 100%;


}

.preview-title:after {
	content: '';
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 0%;
	border-bottom: 2px solid #deb992;
	transition: 0.4s;
}

.preview-row:hover .preview-title:after {
	width: 100%;
}

.preview-title span {
	font-weight: 400;
}

.preview-role {
	font-size: 14px;
	font-weight: 400;
	color: #deb992;
	text-transform: uppercase;
	letter-spacing: 2px;

}

.preview-date {
	position: absolute;
	top: 40px;
	right: 10px;
	font-size: 14px;
	font-weight: 400;
	color: #deb992;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 10px;
}

.section-header {
	font-size: 24px;
	font-weight: 600;
	color: #deb992;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 5px;
}


/*-------------PROJECTS-------------*/

.project-info {
	margin-top: 80px;
	margin-bottom: 0px;
}

.project-title {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #deb992;
	/*margin-bottom: 24px;*/
}

.project-title-mb {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #deb992;
	margin-bottom: 16px;
}

.project-title span {
	font-weight: 400;
}

.weblink {
	margin-bottom: 20px;
}

.project-text-title {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #deb992;
	text-transform: uppercase;
	margin-bottom: 10px;
	display: inline-block;
}

.project-text {
	font-size: 16px;
	/* line-height: 26px; */
	line-height: 1.5em;
	letter-spacing: 0.05em;
	font-weight: 400;
	color: #dff2ff;
	margin-top: 10px;
	margin-bottom: 10px;
}

.project-text p {
	font-size: 18px;
	font-weight: 500;

}

.project-caption {
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.7);
}

article {
	max-width: 70rem;
	margin: 0 auto;
	border: 0.18rem solid lightgrey;
	padding: clamp(1rem, 2vw, 3rem);
	border-radius: 0.5rem;
}

dl {
	margin: 0;
	color: #0A1828;
}

article>*+* {
	margin-top: 1rem;
}

dl {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
	gap: 1rem;
}

dl>div {
	background: #deb992;
	padding: 1rem;
}

dl>div:nth-child(4n - 2) {
	background: #deb992;
}

dl>div:nth-child(4n - 1) {
	background: #deb992;
}

dl>div:nth-child(4n) {
	background: #deb992;
}

dt {
	font-weight: 700;
	font-size: 1.7rem;
	text-decoration: underline;
	text-underline-offset: 5px; /* Adjust the value as needed */
	color: #0A1828;
}

dd {
	margin: 0;
}

.project-text ul {

	list-style-type: none;
	/* Or use 'square', 'disc', etc. */

}

.project-text ul li {
	margin-left: 10px;
	/* Adjust the value as needed */
	padding-left: 15px;
}

.project-text ol {
	font-size: 20px;
	font-weight: 500;
	list-style: none;
	color: #0A1828;
	padding: 0;
	line-height: 1.5em;
	letter-spacing: 0.03em;
}

.project-text li+li {
	margin-top: 1rem;
}

.project-text li {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #deb992;
	padding: 3rem;
	border-radius: 1rem;
	width: calc(100% - 2rem);
	box-shadow: 0.25rem 0.25rem 0.75rem rgb(0 0 0 / 0.1);
}

.project-text li::before {
	counter-increment: list-item;
	content: counter(list-item);
	font-size: 3rem;
	font-weight: 700;
	width: 2em;
	height: 2em;
	background: #0A1828;
	flex: 0 0 auto;
	border-radius: 50%;
	color: #deb992;
	display: flex;
	justify-content: center;
	align-items: center;
}

.project-text li:nth-child(even) {
	flex-direction: row-reverse;
	background: #deb992;
	margin-right: -2rem;
	margin-left: 2rem;
}

/* Education */

.education {
	max-width: 700px;
	margin: 0 auto;
}

.education ul {
	list-style: none;
	padding: 0;
}

.education ul li {

	margin-left: 5px;
	/* Adjust the value as needed */
	padding-left: 15px;
}

.education li+li {
	margin-top: 1rem;
}

.education li {
	gap: 1rem;
	background: #deb992;
	padding: 1.5rem;
	border-radius: 1rem;
	width: calc(100% - 2rem);
	box-shadow: 0.25rem 0.25rem 0.75rem rgb(0 0 0 / 0.1);
	display: flex;
	align-items: center;
}

.education li::before {
	font-size: 3rem;
	font-weight: 700;
	width: 3rem;
	height: 2em;
	background: #0A1828;
	flex: 0 0 auto;
	display: flex;
	border-radius: 50%;
	color: white;
	justify-content: center;
	align-items: center;
}

.education  img {
	height: 70px;
	object-fit: cover;
}
.span-text {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
  }
  
.education li:nth-child(even) {
	flex-direction: row-reverse;
	background: #deb992;
	margin-right: -3rem;
	margin-left: 2rem;
}

.education li:nth-child(even)::before {
	transform: rotateY(180deg);
}





.content {
	padding: 60px 0px;
}

.content-center {
	padding: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
}

.image-mb {
	margin-bottom: 80px;
}

.image-mt {
	margin-top: 40px;
}

.next {
	height: 40px;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	color: #deb992;
	text-align: center;
	margin-bottom: 80px;
	padding: 10px;
	border-radius: 10px;
	border: solid 2px #deb992;
	transition: 0.5s ease;
	background-color: #0A1828;
}

.next:hover {
	background-color: #153253;
	color: #deb992;
}

.next span {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}




/*-------------SCOUTING-------------*/

.facebook {
	height: 800px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}

/*.facebook img {
display: flex;
width: 100%;
}*/

/* .message {
display: flex;
display: -webkit-flex;
align-self: center;
-webkit-align-items: center;
} */





/*-------------SCOUTING-------------*/


.ixda {
	width: 50%;
}

.ministeve {
	width: 200px;
	margin: 40px auto;
}

/*
.me_text {
color: red;
text-decoration: underline;
cursor: pointer;
}
.me_text:hover ~ .me {
opacity: 1;
right: -50%;
display: block;
cursor: pointer;
}
*/


/*-------------ME-------------*/

.me {
	background-color: rgba(255, 204, 115, 1);
	min-height: 100vh;
	padding: 70px 0px 0px 0px;
	overflow: hidden;
}

.me .title {
	font-weight: 600;
	font-size: 28px;
	line-height: 1.1;
	color: #deb992;
	margin-top: 160px;
}

.me .title2 {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: #deb992;
	margin-top: 40px;
}

.me .title2 span {
	font-weight: 600;
	color: #deb992;
}

.portrait {
	position: relative;
}

.portrait img {
	position: absolute;
	right: -20%;
	top: -40px;
	width: 70%;
}

div img.like {
	width: 24px;
	height: auto;
	padding-bottom: 8px;
}

.me svg {
	position: absolute;
}

.contact {
	display: flex;
	display: -webkit-flex;
}

button:focus {
	border: none;
	outline: none;
}

.button1 {
	height: 40px;
	width: 40px;
	margin-right: 10px;
	border: none;
	color: rgba(255, 255, 255, 1);
	background: #0A1828;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	position: relative;
	z-index: 1;
	border-radius: 50%;
	transform: scale(1, 1);
	transition: all 0.3s ease;
}

.button2 {
	height: 40px;
	margin-right: 5px;
	padding: 0px 16px;
	border: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 1);
	background: #0A1828;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	border-radius: 20px;
	transform: scale(1, 1);
	transition: all 0.3s ease;
}

.button1:hover {
	transform: scale(1.1, 1.1);
	background-color: #0A1828;
	color: rgba(255, 255, 255, 1);
}

.button2:hover {
	transform: scale(1.1, 1.1);
	background-color: #0A1828;
	color: rgba(255, 255, 255, 1);
}



/*-------------FOOTER-------------*/

footer {
	background: linear-gradient(to bottom, #0f243c, #0A1828);
	color: #deb992;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: -1;
	padding: 10px 0px;
	font-size: 14px;
	font-weight: 700;
	margin-top: 0px;
}



.copyright2 {
	color: rgb(144, 144, 144);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.5px;
}

.footer-project-title {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.3);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.footer-project {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}

.footer-project a {
	font-size: 16px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	display: inline-block;
	transition: 0.3s ease;
}

.footer-project a.active {
	color: rgba(255, 255, 255, 1);
}

.footer-project a:hover {
	color: rgba(255, 255, 255, 1);
}

.footer-project a:after {
	content: '';
	display: block;
	color: white;
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 0%;
	border-bottom: 1px solid #fff;
	transition: 0.4s ease;
}

.footer-project a:after:hover {
	width: 100%;
	z-index: 100;
}

.footer-project span {
	font-weight: 400;
}


@media (max-width: 1200px) {

	.me img {
		position: absolute;
		right: -20%;
		top: 90px;
		width: 70%;
	}

}


@media (max-width: 992px) {

	.title1 {
		font-size: 100px;
	}

	.me .title {
		margin-top: 60px;
	}

	.me img {
		position: relative;
		right: 0;
		top: 0;
		width: 90%;
	}

	.preview-info {
		padding: 35px 0px;
	}

	.image-mb {
		margin-bottom: 40px
	}


}

@media (max-width: 768px) {


	.intro-hover {
		background: url("../images/hay_bw.gif");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		background-blend-mode: overlay;
		background-color: #0A1828;
	}

	.title1 {
		font-size: 74px;
	}

	.tooltip2 {
		background-position: 0 80px;
	}

	.project-caption {
		margin-top: 20px;
	}

	.dude-main {
		min-height: 800px;
		background-color: #0A1828;
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.me .title {
		margin-top: 60px;
	}

	.me img {
		position: relative;
		right: 0;
		top: 0;
		width: 90%;
	}

	.content-center img {
		margin: 20px 0px;
	}

	.copyright {
		margin-top: 50px;
	}

}


@media (max-width: 400px) {



	.intro-hover {
		background: url("../images/hay_bw.gif");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		background-blend-mode: overlay;
		background-color: #0A1828;
	}

	.title1 {
		font-size: 60px;
		line-height: 1.2;
		color: #deb992;
		margin-top: 50px;
		margin-left: -6px;
		text-shadow: 0px 25px 25px rgba(0, 0, 0, 0.1);
	}

	.tooltip2 {
		background-position: 0 65px;
	}

	.title2 {
		line-height: 1.2;
	}

	.title3 {
		margin-top: 6px;
	}

	.title4 {
		font-size: large;
		margin-top: 6px;
	}

	.preview-row {
		margin-bottom: 30px;
	}

	.preview-info {
		/*height: 130px;*/
		padding: 10px 0px;

	}

	.preview-title {
		margin-bottom: 0px;
	}

	.image-mb {
		margin-bottom: 40px
	}

	.project-info {
		margin-top: 100px;
	}

	.project-title {
		line-height: 1.2;
	}

	.work {
		padding: 30px 0px;
	}

	.section-header {
		margin-bottom: 15px;
	}

	.me .title {
		margin-top: 40px;
	}

	.me img {
		position: relative;
		right: 0;
		top: 0;
		width: 90%;
	}

	.next {
		margin-bottom: 40px;
	}

	.copyright {
		margin-top: 50px;
	}

}

.ticker {
	width: 100%;
	margin: 1px auto;
	color: #deb992;

}

.ticker div {
	display: inline-block;
	word-wrap: break-word;
	font-size: 32px;
}

.span11 {
	text-align: center
}

/* centered columns styles */
.row-centered {
	text-align: center;
}

.col-centered {
	display: inline-block;
	float: none;
	/* reset the text-align */
	text-align: left;
	/* inline-block space fix */
	margin-left: 20px;
}
.col-left {
	
	display: inline-block;
	float: none;
	/* reset the text-align */
	text-align: left;
	/* inline-block space fix */
	margin-right: -4px;
}

ul.no-bullets {
	list-style-type: none;
	/* Remove bullets */
	padding: 0;
	/* Remove padding */
	margin: 0;
	/* Remove margins */
	font-size: 48px;
	margin-top: 6px;
	font-weight: 700;
}

/* Carousel */

.carousel {
	width: 80%;
	margin: 0 auto;
	overflow: hidden;
  }

  .carousel p {
	color: #deb992;


  }
  
  .carousel-inner {
	display: flex;
	transition: transform 0.5s ease-in-out;
  }
  
  .carousel-item {
	flex: 0 0 auto;
	width: 200px; /* Adjust width as needed */
	margin: 10px;
	text-align: center;
  }
  
  .carousel-item img {
	width: 100%;
	height: auto;
  }
  
  .prev, .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
  }
  
  .prev {
	left: 10px;
  }
  
  .next {
	right: 10px;
  }

@keyframes slide {
	0% {
		transform: translateX(0);
	}

	16.67% {
		transform: translateX(-100%);
	}

	33.33% {
		transform: translateX(-200%);
	}

	50% {
		transform: translateX(-300%);
	}

	66.67% {
		transform: translateX(-400%);
	}

	83.33% {
		transform: translateX(-500%);
	}

	100% {
		transform: translateX(0);
	}
}

.card {
	display: grid;
	grid-template-columns: 20% 80%;
	color: #869ba9;
	gap: 10px;

}

.column {
	border: 0;
	padding: 10px;
}

.column1 {
	text-align: center;
	display: flex;
	/* Add this line */
	justify-content: center;
	/* Add this line */
	font-size: 3em;
	/* Adjust the font size as needed */
}

table {
	width: 100%;
	border-collapse: collapse;
	border: 0px;
	color: #869ba9;

}

th,
td {
	border: 0px;
	padding: 0px;
	vertical-align: top;
}

td:nth-child(1) {
	width: 5%;
	text-align: center;
	justify-content: center;
	/* Add this line */
	font-size: 2em;
	/* Adjust the font size as needed */
	vertical-align: top;
}

td:nth-child(2) {
	width: 95%;
	vertical-align: top;
}

.profile-container {
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #869ba9;
	margin-bottom: 10px;

}

.profile-container:hover #image {
	transform: scale(1.1);
	opacity: 0.7;
}

.profile-picture {
	width: 250px;
	height: 250px;
	border-radius: 15%;
	object-fit: cover;
	margin-right: 20px;
	transition: all 1s ease-in-out;

}

.fade-in {
	opacity: 0;
	animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.profile-description {
	font-size: 16px;
	line-height: 1.5;
	flex: 1;
	margin: 0;
	padding: 10px;
}

@media (max-width: 768px) {

	/* Adjust the breakpoint as needed */
	.profile-container {
		flex-direction: column;
		align-items: center;
	}

	.profile-picture {
		margin-bottom: 20px;
		width: 300px;
		height: 300px;
	}
}

.mobile-hr {
	border-top: 1px dashed #ffffff65;
	margin: 20px auto;
	display: block;
	border-radius: 5px;
	/* Rounded corners */
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	/* Add a shadow */
	width: 100%;
}

@media (max-width: 768px) {

	/* Adjust the breakpoint as needed */
	.mobile-hr {
		display: block;
	}
}

hr {
	margin: 0 auto;
	border-top: 1px solid #ffffff65;
	/* Adjust border style, color, and width */
	margin: 20px 0;
	/* Adjust margins as needed */
}

.hr-style1 {
	border-top: 1px dashed #ffffff65;
	margin: 20px auto;
	display: block;
	border-radius: 5px;
	/* Rounded corners */
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	/* Add a shadow */
	width: 100%;
}

.project-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.project-card {
	width: 250px;
	margin: 20px;
	border: 1px solid #ccc;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.project-card img {
	width: 100%;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.project-card h2 {
	margin: 10px 0;
}

.project-card p {
	padding: 10px;
}