/* ======================================== */
/* section_header
/* ======================================== */

.section_header {
	position: relative;
	overflow: hidden;
	height: 100vh;
	width: 100%;
	cursor: pointer;
	transition: all ease 200ms;
	}
.section_header .ctn_section {
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	height: calc(100% - var(--aox-100px));
	width: calc(100% - var(--aox-100px));
	transform: translate(-50%, -50%);
	background: var(--aox-color-purple);
	}
.section_header .ctn_section::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100%;
	width: 100%;
	transform: translate(-50%, -50%);
	background: url("../images/bg_header.jpg") no-repeat center center / 100% auto #6a1fff;
	}

.section_header .ctn_text {
	position: absolute;
	top: 50%;
	left: 50%;
	width: var(--aox-grid);
	padding-left: var(--aox-col-6-gutter);
	transform: translate(-50%, -50%);
	}
.section_header .ctn_text .t_name {
	font-size: var(--aox-fs-16px);
	color: #51f99f;
	}
.section_header .ctn_text .t_baseline {
	position: relative;
	margin-top: var(--aox-40px);
	padding-left: var(--aox-80px);
	font-family: "Playfair Display";
	font-size: var(--aox-fs-80px);
	line-height: 1;
	color: white;
	}
.section_header .ctn_text .t_baseline em {
	display: inline-block;
	position: relative;
	z-index: 2;
	font-style: italic;
	color: var(--aox-color-green);
	}
.section_header .ctn_text .t_baseline em::before {
	content: "";
	opacity: 1;
	display: inline-block;
	position: absolute;
	z-index: -1;
	height: var(--aox-5px);
	left: 0;
	right: 0;
	bottom: -10%;
	background: url("../images/v_brush_green.svg") no-repeat center center / 100% transparent;
	}

/* ======================================== */
/* section_bio
/* ======================================== */

.section_bio {
	background-color: #f2f2f2;
	}
.section_bio .ctn_section {
	display: flex;
	flex-direction: column;
	}

.section_bio .ctn_text {
	width: 60%;
	padding: 60px 120px 60px 60px;
	background-color: white;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
	}

.section_bio .ctn_image {
	position: relative;
	align-self: flex-end;
	width: 45%;
	margin-top: -40%;
	padding: 5% 5% 0 0;
	background-color: transparent;
	}
.section_bio .ctn_image .ctn_line {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	height: 50%;
	width: 50%;
	border: solid 3px var(--aox-color-green);
	transition: all ease 200ms;
	}
.section_bio .ctn_image img {
	position: relative;
	z-index: 2;
	width: 100%;
	transition: 400ms;
	}

/* ======================================== */
/* section_logos
/* ======================================== */

.section_logos .ctn_row + .ctn_row {
	margin-top: 60px;
	}
.section_logos .ctn_row img {
	display: block;
	opacity: 0.75;
	width: 100%;
	max-width: 150px;
	margin: 0 auto;
	transition: 400ms;
	}
.section_logos .ctn_row img:hover {
	opacity: 1;
	}

@media screen and (max-width: 768px) {

	.section_logos .ctn_row {
		display: flex;
		flex-wrap: wrap;
		}
	.section_logos .ctn_row + .ctn_row {
		margin-top: 30px;
		}
	.section_logos .ctn_row > * {
		flex: none;
		width: 50%;
		max-width: 50% !important;
		}
	.section_logos .ctn_row > * + * {
		margin-top: 0;
		}
	.section_logos .ctn_row > *:nth-child(n+3) {
		margin-top: 30px;
		}
	.section_logos .ctn_row img {
		width: 80%;
		}

	}

/* ======================================== */
/* section_skills
/* ======================================== */

.section_skills {
	background: #f2f2f2;
	}

.section_skills .t_title {
	color: #6a1fff;
	}
.section_skills .t_title span::before {
	background-image: url("../images/v_brush_green.svg");
	}
.section_skills .t_subtitle {
	color: #51f99f;
	}
.section_skills .t_subtitle::before {
	background-color: #51f99f;
	}
.section_skills h5 {
	display: flex;
	flex-direction: row;
	align-items: center;
	color: #6a1fff;
	}
.section_skills h5 i {
	position: relative;
	display: block;
	height: 60px;
	min-width: 60px;
	width: 60px;
	margin-right: 20px;
	color: white;
	text-align: center;
	border-radius: 50%;
	background-color: #6a1fff;
	}
.section_skills h5 i::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	}
.section_skills .obj_skill h5 + ul {
	margin-top: 20px;
	}
.section_skills .obj_skill ul li {
	position: relative;
	padding-left: 20px;
	}
.section_skills .obj_skill ul li::before {
	content: "→";
	position: absolute;
	left: 0;
	}
.section_skills .obj_skill ul li + li {
	margin-top: 0;
	}

/* ======================================== */
/* section_curriculum
/* ======================================== */

.section_curriculum .ctn_col > * + * {
	margin-top: 30px;
	}
.section_curriculum .ctn_section {
	padding-bottom: 30px;
	border-bottom: solid 2px #f2f2f2;
	}

/* ======================================== */
/* section_contact
/* ======================================== */

.section_contact {
	text-align: center;
	background: var(--aox-color-purple);
	}
.section_contact .t_title {
	color: white;
	}
.section_contact .t_title em {
	color: var(--aox-color-green);
	}

/* ======================================== */
/* section_footer
/* ======================================== */

.section_footer {
	color: var(--aox-color-neutral-90);
	}
.section_footer a {
	color: var(--aox-color-purple);
	}

.section_footer .ctn_row {
	display: flex;
	vertical-align: flex-end;
	}

.section_footer .col_social ul li a i {
	display: inline-block;
	width: var(--aox-20px);
	}

.section_footer .col_legal {
	font-size: var(--aox-fs-12px);
	color: var(--aox-color-neutral-20);
	}

.section_footer .col_social ul {
	display: flex;
	flex-direction: row;
	}
.section_footer .col_social ul li + li {
	margin-left: var(--aox-10px);
	}
.section_footer .col_social ul li {
	font-size: var(--aox-24px);
	}