/*|===============|profile_background|===============|*/
.profile{
    min-height:100vh;
    overflow: auto;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}
.profile:before {
    content: "";
    display: block;
    height: 150px;
    margin: -70px 0 0; 
}
/*|===============|profile_general|===============|*/
.profile .profile_container{
    box-shadow: 5px 5px 0px 0px var(--highlight_color_5); 
    max-width:800px;
    margin:100px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    padding:30px;
    color:white;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--container_background_1);
    z-index: 2;
} 
.arrow_separator{
    margin:0;
    margin-top:20px;
    padding:0;
    display:flex;
    align-items: center;
    justify-content: left;
    gap:0;
}
.profile_hr{
    margin:0;
    padding:0;
    text-align: left;
    margin:10px;
    width:100%;
    height:2px;
    border:none;
    background-color:var(--highlight_color_1);
    flex-wrap: nowrap;
}
.arrow_separator p{
    margin:0;
    padding:0;
}

/*|===============|profile_header|===============|*/
.profile_header{
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    text-align: center;
    gap:20px;
}

.profile_photo{
    max-width:200px;
    transition: scale 0.08s linear;
}
.photo_name{

}
.profile_data_block{
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.38);
    box-shadow: inset 0px 0px 10px 3px rgb(0, 0, 0);
    text-align: left;
    padding:30px;
}
.profile_data_block h1{
    text-align: center;
}
.profile_data h1{
    color:var(--font_color_1);
}
.quick_data_variable{
    color:var(--font_color_3);
}
/*|===============|profile_description|===============|*/
.profile_description{
    
}
.profile_description h1{
    color: #ffffff;
    font-family:sans-serif;
    text-align: center;
}
.profile_description p{
    color: var(--font_color_4);
    font-family:sans-serif;
    font-size: var(--font_size_description_sans);
}
/*|===============|mobile_device|===============|*/
@media(max-width:800px){
    .profile_photo{
        max-width:100px;
    }
    .photo_name{
        margin:0;
    }
    .profile_header{
        flex-direction: column;
        gap:0;
    }

    .profile_data_block{
        padding: 20px;
    }
    .profile_description p{
 
    }
    .profile_hr{
     margin-top:20px;   
    }
}
@media(max-width:700px){
    .profile .profile_container{
        margin:0;
        border-radius: 0;
    }
}
@media(max-width:338px){
    .profile .profile_container{
    }
    .profile_description{
        padding: 0 10px;
    }
    .profile_data_block{
        border-radius:30px;
    }

}