﻿:root {
    --color-primary: #0067a6;
    --color-primaryMedium: #4d95c1;
    --color-grey: #f2f2f2;
    --font-inter: 'Inter 18pt', sans-serif;
    --font-javanese: 'Javanese Text', serif;
}

@media (min-width: 1300px) {
    .container {
        max-width: 1320px;
    }
}


/****** Card-css & animation ******/
.member-card {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-img {
    height: 100%;
    width: 100%;
}

    .card-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.member-name {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 95%;
    background-color: #666;
    background-color: var(--color-primaryMedium);
    color: #fff;
    border-radius: 0 100px 0 0;
    padding: 0.35rem 1rem;
    font-size: 1.2rem;
    transition: 200ms ease;
    z-index: 9;
}

    .member-name h6 {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

.hiddenCard-div {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translate(-50%);
    height: 100%;
    width: 100%;
    background-color: var(--color-grey);
    color: #000;
    text-align: center;
    transition: 400ms ease;
    transform-origin: bottom;
    z-index: 99;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    overflow: auto;
}

.member-card:hover .member-name {
    opacity: 0;
}

p.member-desc {
    margin-bottom: 0;
}

.member-card:hover .hiddenCard-div {
    bottom: 0%;
}

/***** End of Card-css & animation ******/

/****** Individial TeamMember css ******/
.teamMember-content{
    /*background-color:#f4f4f4;*/
/*    padding:2rem;*/
}
.teamMember-content h1 {
    font-size: 2.5rem;
}
.teamMember-content p, .detailed-desc p {
    text-align: left !important;
    font-size: 1rem;
}
.teamMember-content h4 {
    font-family: 'Inter 18pt';
    font-size:1.4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.teamMember-image {
}
.teamMember-name {
    color: var(--color-primary);
    border-bottom: 1px solid #000;
    margin-bottom: 1.5rem;
}

.teamMember-content .btn-div {
    margin-inline: unset;
    background-color: var(--color-primary);
    color: #fff;
    margin-top: 1rem;
    cursor:pointer;
}
    .teamMember-content .btn-div:hover {
        color: #fff;
    }

.detailed-desc .pointer-div {
    background-color: #f4f4f4;
    padding:2rem;
    margin-bottom:1.5rem;
}

    .detailed-desc .pointer-div ul {
        list-style:disc;
        padding-left:2rem;
    }

.desc-head {
    color: #4d4d4d;
    border-bottom: 1px solid #666;
    margin-bottom: 1.5rem;
}
/****** End of Individial TeamMember css ******/

/****** About-page ******/
.experience{
    background-color:#fff;
    padding:0;
}
    .experience .experience-card .hiddenCard-div {
        background-color: var(--color-grey);
        color:#000;
    }
.content-div{
/*    border:1px solid #ccc;*/
    background-color:#f4f4f4;
    padding:2rem;
}
    .content-div h4 {
        color: var(--color-primary);
        border-bottom: 1px solid var(--color-primary);
        width: fit-content;
        margin-bottom: 1.5rem;
        font-size:2rem;
    }

.content-div  h6{
    font-weight:600;
    width:fit-content;
    border-bottom:1px solid #000;
}
/****** About-page ******/
