/*
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&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://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&family=Montserrat:wght@100&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');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root{
    --primary-color: #58a4c7;
    --title-color: #2b5876;
    --link-color: #6946a6;
    --text-color: black;
}
html {
    font-size: 11px;
}
body {
    font-family: 'Inter', sans-serif;
    background-image: url("./files/background.jpg");
    color: #ffffff;
}

/* common styles

are the styles that are applicable in multiple places 
*/
img {
    width: 100%;
}

a {
    text-decoration: none;
    color: black;
}
.description {
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-color);
}
.title {
    color: var(--title-color);
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
}
.item_preTitle {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 400;
}
.item_title {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0.4rem 0;
}
.item_subtitle {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 400;
}
.tab {
    display: inline-block;
    margin-left: 20px;
}

/* layouts */
.container{
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    padding: 5rem;
    background: beige;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
@media only screen and (max-width: 768px) {
    .container {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 3rem;
        gap: 7rem;
    }
}
.profile {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}
.group-1, .group-2 {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.group-3 {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    gap: 5rem;
}
.group-3 > div {
    flex: 1;
}

/* NEW*/
.intro-row {
    grid-column: 1 / -1; /* Span across both columns */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
	gap: 5rem;
}

.intro-title {
    color: var(--title-color);
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
	text-align: center;
}

.question {
	margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.answer {
	margin-top: 2rem;
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 400;
    margin: 0;
	justify-content: space-between;
}

/* FINISH*/
@media only screen and (max-width: 768px) {
    .profile {
        margin-bottom: 0;
    }
    .group-3 {
        flex-direction: column;
        gap: 7rem;
    }
}

/* profile 

The clamp function is used to set the font size according to the screen size.
in this case: clamp(2rem, 8vw, 4rem);
rem stands for root em. 1rem = 10px. So, 2rem = 20px. 8vw = 8% of viewport width. 4rem = 40px.
So, the font size will be 20px on small screens, 8% of viewport width on medium screens and 40px on large screens.

*/
.profile_container {
    display: flex;
    gap: 2rem;
}
.profile_profileImg{
    max-width: 250px;
}
.profile_name_firstName {
    color: black;
    font-weight: 300;
    font-size: clamp(2rem, 8vw, 4rem);
    text-transform: uppercase;
    display: block;
    margin-bottom: -0.8rem;
}
.profile_name_lastName {
    color: var(--title-color);
    font-weight: 700;
    font-size: clamp(2.5rem, 15vw, 7rem);
    text-transform: uppercase;
    display: block;
}
.profile_title {
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(48, 48, 48);
}
.downloadButton {
    display: block;
    text-decoration: underline;
    font-size: 1.6rem;
    margin-top: 1rem;
}
.downloadButton:hover {
    color: var(--link-color);
}
@media only screen and (max-width: 768px) {
    .profile_container {
        flex-direction: column;
    }
}

/* expertise */
.skill_list {
    margin-top: 1rem;
    margin-left: 2rem;
    line-height: 2;
}

/* ref */
.ref_item {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    color: var(--text-color);
}
.ref_name {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-color);
}
.ref_flag {
    font-size: 2rem;
    margin-right: 1rem;
}

/* education */
.edu_item {
    margin-top: 2rem;
}

/* exp_item */
.exp_item {
    margin-top: 2rem;
}
.item_li_description {
    margin-top: 1rem;
    margin-left: 2rem;
    line-height: 1.5;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-color);
}
.item_description {
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-color);
}

/* awards */
.project_info {
    margin-top: 1rem;
    color: var(--text-color);
    font-size: 1.2rem;
}
.project_item {
    margin-top: 1.5rem;
}
.project_title {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 6px;
    margin-bottom: 6px;
    color: var(--primary-color);
}
.project_title:hover {
    color: var(--link-color);
}


/* interests */
.interest_items {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.interest_item {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-color);
}
.interest_item svg {
    width: 2rem;
}

/* socials */
.social_items {
    margin-top: 2rem;
}
.social_item {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-color);
}
.social_item:hover {
    color: var(--primary-color);
}
.social_item svg {
    width: 2rem;
}


hr {
    grid-column: 1 / -1;
    width: 80%;
    margin: 0 auto;
    margin-top: 5rem;
    margin-bottom: 1rem;
    border: none;
    border-top: 2px solid rgba(128, 128, 128, 0.229);
}
@media only screen and (max-width: 768px) {
    hr {
        margin: 0 auto;
    }
}






/* Mouse follower */

.cursor {
    pointer-events: none;
    position: fixed;
    display: block;
    border-radius: 0;
    top: 0;
    left: 0;
    z-index: 9999999999999999;  
}

.circle {
    position: fixed;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    background-color: beige;
}
