/* ......................................................hearder */
body{
    padding: 0;
    margin: 0;
    /* background-image: url(./images/body-background.png);
    /* background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; */ 
    height: auto;
    font-size: 16px;
    background-color: rgba(240, 240, 240, 0.35);
    display: flex;
    flex-direction: column;
    /* position: relative; */
}
header {
    position: fixed;
    width: 100vw;
    top: 0;

}
.nav-area {
    display: flex;
    flex-direction: row;
    min-width: 320px;
    height: 50px;
    justify-content: space-between;
    /* background-color: aqua; */
    align-items: center;
    padding: 0 5px;
    background-color: white;

}
.nav-area > a {
    /* width: 100%; */
    /* background-color: rgb(233, 124, 0); */
}
.nav-left{
    width: 40px;
    /* background-color: blueviolet; */
}
.nav-right{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* width: 400px; */
    gap: 40px;
}
.nav-right-words{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    font-size: 20px;

}
#nav-toggle{
    cursor: pointer;
    /* position: relative; */
}
#nav-switch{
    display: none;
}
#nav-toggle > img{
    width: 40px;
}
.drawer {
    position: fixed;
    width: 100vw;
    inset: 0 0 0 -110%;
    background-color: white;
    box-shadow: -1px 1px 0px 0px rgba(128, 128, 128, 0.247);
    /* padding: 20px; */
    top:0px;
    right: 0px;
    transition: all 0.3s ease;
    z-index: 5;
}
.drawer ul{
    list-style: none;
    padding: 10px;
    margin: 0px;
    font-size: 18px;
}
.drawer li+li{
    margin-top: 16px;
}
.drawer a {
    text-decoration: none;
    color: rgb(128, 128, 128,0.9);
}
.close-btn{
    top: 10px;
    right: 10px;
    position:absolute;
    cursor: pointer;
}
#nav-switch:checked ~ .drawer{
    inset: 0 0 0 0;
    /* z-index: -1; */
}

/* .......................................................banner */
.logobg{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100vw;
    /* background-color: white; */
    border-top:1px solid rgba(128, 128, 128, 0.3) ;
}

/* .......................................................main content */


main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    /* justify-content: center; */


}
.name-card {
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    width: 320px;
    border-radius: 20px;
    box-shadow: 2px 2px 6px 5px rgba(128, 128, 128, 0.4);
    padding: 10px;
    gap: 10px;

}
.name-card-part2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.avatar {
    width: 80px;
    border-radius: 40px;
    border:1px solid gray
}
.name-card-part2-information {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    font-weight: 900;
    gap: 10px;
}

.name-card-part3 {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.name-card-part3-left {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.name-card-part3-right {
    display: flex;
    gap: 10px;
    flex-direction: column;
}



.address-card {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    width: 320px;
    border-radius: 20px;
    box-shadow: 2px 2px 6px 5px rgba(128, 128, 128, 0.4);
    padding: 10px;
    gap: 10px;
}

.address-card span {
    display: flex; 
    flex-direction: row; 
    align-items: start;
}
.address-card img {
    width: 25px;
}



/* .......................................................footer */
.nav-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100vw;
    height: 70px;
    position: fixed;
    background-color: white;
    bottom: 0px;
    border-top: 1px solid rgb(128, 128, 128,0.3);
    /* margin-top:50px ; */
    /* z-index: 1; */
}
footer  a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: black;
    width: 100%;
}
.footer-btn {
    width: 40px;
}






