body {
    display: flex;
    flex-direction: column;
    background-color: #210B0E;
    overflow-x: hidden;
    
}

.header {
    background-image: url('../../bg.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.content-header .logo {
    width: 400px;
    height: 400px;
}

.content-header h1 {
    font-family: gilroy-bold;
    font-size: 2.5rem;
    margin: 0;
    color: white;
}

.content-header h2{
    width: 90%;
    font-family: gilroy-light;
    text-align: center;
    font-weight: 100;
    font-size: 2rem;
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;

}

/* ---------------------------------- */

.container:nth-child(odd) {
    flex-direction: row;
}

.container:nth-child(even) {
    flex-direction: row-reverse;
}

.container {
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.container .content {
    text-align: center;
    padding: 50px 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.container .content h1 {
    font-family: bakery_roast_regular;
    font-size: 7rem;
    font-weight: 100;
    margin: 0;
    color: white;
    margin-bottom: 10%;
    text-align: center;
}


.container .content p:not(.btn p) {
    font-family: gilroy-light;
    font-size: 1.5rem;
    color: white;
    margin-top: 10px;
}

.container .side-img img {
    object-fit: contain;
    aspect-ratio: 1/1;
    height: 75vh;
    width: 50vw;
}

/* ---------------------------------- */

.name {
    margin-bottom: 50px;
}

.name h2 {
    font-family: gilroy-bold;
    font-size: 2.5rem;
    margin: 0;
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}

.name h3 {
    font-family: gilroy-medium;
    font-size: 2rem;
    color: white;
    font-weight: 100;
    margin-top: 10px;
    margin-bottom: 10px;
}

.role {
    margin-bottom: 50px;

}

.role h3 {
    font-family: gilroy-medium;
    font-size: 2rem;
    color: white;
    font-weight: 100;
    margin-top: 10px;
    margin-bottom: 10px;
}


.description p {
    font-family: gilroy-light;
    font-size: 2rem !important;
    color: white;
    margin: 0;
}

.separator_container {
    border-radius: 50px;
    width: 50%;
    height: 5px;
    background-color: white;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.separator_header{
    border-radius: 50px;
    width: 50%;
    height: 5px;
    background-color: white;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

