/* counter start */

.countermain{
    background-color: cyan;
    margin: 20px;
    padding: 20px;
}

.counter{
    background: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    width: 210px;
    padding: 0 0 25px;
    margin: 0 auto 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    position: relative;
}
.counter:before{
    content: "";
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 5px 0;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.07);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    bottom: -15px;
    left: 50%;
}
.counter .counter-value{
    color: #fff;
    background: linear-gradient(to right, #19bbd2, #2778ee);
    font-size: 38px;
    font-weight: 300;
    padding: 0 0 3px;
    margin: 0 0 25px;
    border-radius: 10px 10px 0 0;
    display: block;
}
.counter h3{
    color: #2778ee;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin: 0 0 25px;
}
.counter .counter-icon{
    color: #fff;
    background: linear-gradient(to right, #19bbd2, #2778ee);
    font-size: 40px;
    line-height: 60px;
    width: 65px;
    height: 65px;
    margin: 0 auto;
    border-radius: 10px;
}
.counter.purple .counter-value,
.counter.purple .counter-icon{
    background: linear-gradient(to right, #8f70e7, #c452ef);
}
.counter.purple h3{ color: #c452ef; }
.counter.magenta .counter-value,
.counter.magenta .counter-icon{
    background: linear-gradient(to right, #e84a94, #ae379b);
}
.counter.magenta h3{ color: #ae379b; }
.counter.yellow .counter-value,
.counter.yellow .counter-icon{
    background: linear-gradient(to right, #fecb4b, #e69814);
}
.counter.yellow h3{ color: #e69814; }
@media screen and (max-width:990px){
    .counter{ margin-bottom: 45px; }
}


/* counter css end */


/* staff cards css start */


@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');



.cards {
    min-height: 100vh;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center
}

p {
    margin: 0px
}

.card1 {
    width: 280px;
    height: 520px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #fff;
    transition: all 0.5s ease;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    overflow: hidden
}

.card1 .backgroundEffect {
    bottom: 0;
    height: 0px;
    width: 100%
}

.card1:hover {
    color: #fff;
    transform: scale(1.025);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px
}

.card1:hover .backgroundEffect {
    bottom: 0;
    height: 320px;
    width: 100%;
    position: absolute;
    z-index: -1;
    background: #1b9ce3;
    animation: popBackground 0.3s ease-in
}

@keyframes popBackground {
    0% {
        height: 20px;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%
    }

    50% {
        height: 80px;
        border-top-left-radius: 75%;
        border-top-right-radius: 75%
    }

    75% {
        height: 160px;
        border-top-left-radius: 85%;
        border-top-right-radius: 85%
    }

    100% {
        height: 320px;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%
    }
}

.card1 .pic {
    position: relative
}

.card1 .pic img {
    width: 100%;
    height: 280px;
    object-fit: cover
}

.card1 .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 70px;
    background-color: #1b9ce3;
    color: white;
    position: absolute;
    bottom: 0px;
    transition: all ease
}

.card1 .date .day {
    font-size: 14px;
    font-weight: 600
}

.card1 .date .month,
.card1 .date .year {
    font-size: 10px
}

.card1 .text-muted {
    font-size: 12px
}

.card1:hover .text-muted {
    color: #fff !important
}

.card1 .content {
    padding: 0 20px
}

.card1 .content .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background-color: #1b9ce3;
    border-radius: 25px;
    font-size: 12px;
    border: none
}

.card1:hover .content .btn {
    background: #fff;
    color: #1b9ce3;
    box-shadow: #0000001a 0px 3px 5px
}

.card1 .content .btn .fas {
    font-size: 10px;
    padding-left: 5px
}

.card1 .content .foot .admin {
    color: #1b9ce3;
    font-size: 12px
}

.card1:hover .content .foot .admin {
    color: #fff
}

.card1 .content .foot .icon {
    font-size: 12px
}



/* cards css end */

.doc-list{
    margin:10px 0px;
    padding:0px 10px;;
    border-left:3px solid orange;
}

.sub-list {
    margin:10px 0px;
    padding:0px 10px;;
    border-left:3px solid orange;
}

.sub-list a{
    text-decoration: none;
    font-size:18px;
    color:gray;
    font-weight:700px;
}
.doc-list a{
    text-decoration: none;
    font-size:18px;
    color:gray;
    font-weight:700px;
}