@charset "UTF-8";
/* Author: Sorcha Griselda
	Date: 16 October 2023
*/

h2 {
		color: white; 
		padding: 0; 
		box-sizing: border-box; 
		font-family: 'Gabarito', cursive;
		font-size: 2em;
		margin-top: 20px;
		text-transform: uppercase;
		text-align: center;
		font-weight: 600;
		line-height: 1.4em;
		}
	h2 span {
		font-size: 0.8em;
		font-weight: 200;
		}
	h3 {
		font-family: 'Gabarito', cursive;
		color: white;
		font-weight: 300;
		font-size: 23pt;
		}
	h3 span {
		color: white;
		}
	h4 {
		font-family: 'Gabarito', cursive;
		color: white;
		font-weight: 800;
		font-size: 1.1em;
		}
	h5 {
		font-family: 'Gabarito', cursive;
		color: darkgoldenrod;
		font-weight: 1000;
		font-size: 1em;
		}
	h6 {
		font-family: 'Gabarito', cursive;
		color: saddlebrown;
		font-weight: 800;
		font-size: 3em;
		text-transform: uppercase;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	h7 {
		font-family: 'Gabarito', cursive;
		color: burlywood;
		font-weight: 600;
		font-size: 1em;
		text-transform:none;
		text-align: justify;
	}
	h8 {
		font-family: 'Gabarito', cursive;
		color: burlywood;
		font-weight: 600;
		font-size: 1em;
		text-transform:none;
		text-align: justify;
		text-decoration: underline;
	}
	p {
		font-family: 'Gabarito', cursive;
		color: burlywood;
		font-weight: 300;
		font-size: 1em;
		text-transform:none;
		text-align: justify;
		margin-bottom: 20px;
	}
	body {
		background-color: cornsilk; 
		display: flex; 
		justify-content: center; 
		align-items: center; 
		min-height: 100vh;
		}
	.container {
		position: relative; 
		width: 100%; 
		max-width: 1330px; 
		min-height: 1000px; 
		background-color: ivory;
		margin: 50px;
		display: grid;
		grid-template-columns: 1fr 2fr;
		box-shadow: 0 35px 55px rgba(0,0,0,0.1);
		}
	.container .left_side {
		position: relative;
		background-color: wheat; 
		padding: 40px
		}
	.profiletext {
		position: relative; 
		display: flex; 
		flex-direction: column; 
		align-items: center; 
		padding-bottom: 5px; 
		border-bottom: 3px solid #FCF5F5;
		}
	.profiletext .imgBx {
		position: relative;
		width: 200px;
		height: 200px;
		border-radius: 50%;
		overflow: hidden;
		}
	.profileText.imgBx img{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		}
	.contactInfo {
		padding-top: 30px;
		text-transform: uppercase;
		}
	.icon {
		color: darkgoldenrod;
		display: inline-block;
	}
	.text {
		position: relative;
		color: white;
		text-transform: none;
		font-family: 'Gabarito', cursive;
		font-weight: 300;
		font-size: 13pt;
		}
	.contactInfo ul {
		position: relative;
		}
	.contactInfo ul li {
		position: relative;
		list-style: none;
		margin: 10px 0;
		cursor: pointer;
		}
	.contactInfo.education li {
		margin-bottom: 15px;
		}
	.contactInfo.language .percent{
		position: relative;
		width: 100%;
		height: 6px;
		background: #E1D0ED;
		display: block;
		margin-top: 5px
	}
	.contactInfo.language .percent div {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background: #E1D0ED
		}
	.container .right_side {
		position: relative; 
		background-color: ivory; 
		padding: 40px
		}
	.about {
		margin-bottom: 50px;
	}
	.about:last-child {
		margin-bottom: 0;
	}
	.title2 {
		color: saddlebrown;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-bottom: 10px;
	}
	.row {
		display: flex;
		gap: 3%;
		justify-content: center;
		align-content: center;
	}
	.column {
		min-width: 30%;
		min-height: 200px;
		padding: 2%;
		box-sizing: border-box;
	}