.project_header_img{
    width: 100%;
    margin-bottom: 10px;

}
.project_header_img img{
    width: 100%;
    height: fit-content;
    display: block;
}

.proj_nam sup{
    border-radius: 50%;
    -webkit-border-radius: 0.8em;
    color:var(--white);
    display: inline-block;
    font-weight: bold;
    line-height: 1.6em;
    text-align: center;
    width: 1.6em;

    background-color: var(--t-color) ;
}
.badgebg {
    background: var(--t-color);
    clip-path: circle();
}
.proj_nam a{
    color:var(--black);
    text-decoration: none;
    padding-bottom: 5px;

}
.line_effect{
    position: relative;
    display: inline-block;
}
.line_effect::after{
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -3px;
    background-color: var(--p-color);
    transition: all 300ms;
}
.line_effect:hover:after{
    width: calc(100%);
}
.proj_nam>:nth-child(n) {
    margin: 20px 0;
}


/*PROJECTS BOX*/


.under_ser{
    height: 400px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}
.under_ser:hover .hover_name{
    bottom: 10px;
}
.hover_name {
    margin-top: 26px;
    background: var(--black);
    opacity: .8;
    height: 100px;
    width: auto;
    padding: 0 10px;
    position: absolute;
    left: 20px;
    bottom: -100%;
    transition: all .3s;
    border-radius: 10px;

}
.hover_name p{
    padding-bottom: 10px;
}


