@import url('https://fonts.googleapis.com/css2?family=Playfair:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Playfair', serif;
}

.flex_header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 1rem;
}

.flex_header h2 {
    justify-content: right;
    font-size: 2rem;
    border-radius: 10px;
    background-color: #a585aa;
    margin-left: 2rem;
    margin-top: 3.7rem;
    padding: 0.7rem;
    width: 51rem;
    text-align: right;
}

.flex_header h3 {
    font-size: 1.5rem;
    background-color: #a585aa;
    border-radius: 10px;
    margin-left: 2rem;
    padding: 0.7rem;
    width: 51rem;
    text-align: right;
}

.flex_header img {
    border-radius: 50%;
    border: 2px solid #2c2838;
}

.flex_main {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flex_contacts {
    display: flex;
    flex-direction: row;
    margin-left: 2rem;
    margin-top: 2rem;
}

.flex_contacts h4 {
    font-size: 1rem;
    background-color: #a585aa;
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
    width: 14rem;
}

.flex_contacts p {
    font-size: 1rem;
    text-align: left;
    margin: 0.3rem;
}

.flex_container_logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.material-symbols-outlined {
    margin-right: 0.3rem;
}

.flex_languages {
    display: flex;
    flex-direction: row;
    margin-left: 2rem;
    margin-top: 1.5rem;
}

.flex_languages h4 {
    font-size: 1rem;
    background-color: #a585aa;
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
    margin: 0;
    margin-bottom: 1.5rem;
    width: 14rem;
}

.item-lang {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
    justify-content: space-between;
}
.progress {
    position: relative;
    width: 9rem;
    height: 1.3rem;
    background: #e2e2e2;
    border-radius: 10px;
    overflow: hidden;
}
.progress_fill_1 {
    width: 85%;
    height: 100%;
    background: #edb8e8;
}
.progress_text {
    position: absolute;
    top: 0px;
    left: 10px;
    font-size: 15px;
}

.progress_fill_2 {
    width: 75%;
    height: 100%;
    background: #edb8e8;
}

.progress_fill_3 {
    width: 95%;
    height: 100%;
    background: #edb8e8;
}

.flex_trainings {
    display: flex;
    flex-direction: row;
    margin-left: 2rem;
    margin-top: 1.5rem;
}

.flex_trainings h4 {
    font-size: 1rem;
    background-color: #a585aa;
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
    margin: 0;
    margin-bottom: 1.5rem;
    width: 14rem;
}
.flex_trainings p {
    font-size: 1rem;
    text-align: left;
    margin: 0.3rem;
}

.right {
    margin-top: 2.5rem;
    margin-left: 2rem;
    padding-left: 4rem;
}   

.right p {
    margin-left: 2rem;
    font-size: 1.2rem;
}

.right li {
    font-size: 1.2rem;
}

hr {
    border: 1px solid black;
}

table {
    margin-top: 2rem;
    width: 90%;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
    font-size: 1.2rem;
}

table td, th {
    padding: 0.5rem;
    text-align: center;
    border: 2px solid black;
}

table tr, td {
    background-color: white;
}

.header_color {
    background-color: #a585aa;
}