.body-img-body{
    box-shadow: var(--bs);
    border-radius: 9px;
}

.title{
    color:black;
    font-family: var(--ff-secondary);
    text-align: center;
}
.position-title__text{
    font-family: var(--ff-secondary);
    font-weight: 600;
    font-size: 1rem;
}
.Employee-div{
    background: var(--cl-white);
    border: 1px solid rgba(15, 15, 15, 0.803);
    padding: 2px;
}
.Employee-div p{
    margin: 0;
}
.Employee-position{
    color: var(--cl-green);
}
.title-section{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    text-align: center;
    font-family: var(--ff-primary);

    max-height: 0;
    overflow: hidden;
    padding-top: 20px;
}
.open-title-section{
    color: white;
    background: var(--cl-green);
    text-transform: lowercase;
    display: inline;
    border: none;
    padding: .2em 1em;

}
.open-title-section:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.title-section.section-open{
    max-height: 10000px;
    overflow: visible;
}
.flex-personal__links{
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
}
.fb-icon{
    color: #4267B2;
    font-size: 1.2rem;
}
.tw-icon{
    color: 	#1DA1F2;
    font-size: 1.2rem;
}



/* contact-us */
.contact-title__desktopView{
    display: none;
}
.contacts{
    text-align: center;
    padding: .5em;
    background: var(--cl-blue);
}
.contact-title{
    font-family: var(--ff-secondary);
    color: var(--cl-white);
    font-size: 1.75rem;
    font-weight: 600;
}
.contact-text{
    font-family: var(--ff-primary);
    letter-spacing: 1px;
    color: var(--cl-white);
    font-size: .9rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3em;

}
.Google-map{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: var(--bs);
    margin-bottom: 30px;
}

/* footer */

.f-footer{
    font-size: 1.5rem;
    margin: 1.5em;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footer-link{
    color: var(--cl-white);
    font-family: var(--ff-primary);
    text-decoration: none;
}
.footer-text{
    text-align: center;
    color: var(--cl-white);
    font-family: var(--ff-primary);
    font-weight: 300;
}

/* organogram */
.organogram{
    background: var(--cl-white);
}
.organogram-text{
    text-align: center;
    font-family: var(--ff-secondary);
    font-weight: 500;
    padding-top: 1em;
    font-size: .9em;
}


@media(min-width:768px){

    .title-section{
        grid-template-columns: repeat(auto-fit, minmax(120px, 150px));
    }
    .flex-footer{
        display: flex;
        gap: 20px;
    }

    .organogram-text{
        font-size: 1.5em;
    }

    .organogram-img{
        padding: 0 4em;
        margin: 0;
    }
    /* footer */

    .flex-footer{
        display: flex;
        justify-content: space-around;
    }
    .contact-text{
        width: 80%;
        margin-top: 63px;
    }
    .contact-text,
    .contact-title{
        text-align: left;
    }
    .footer-link{
        font-size: 1rem;
    }
    .footer{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .footer-text{
        font-size: .8rem;
        font-weight: 300;
    }
}
