/* Hide scrollbar for all elements */
::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

body, html {
    -ms-overflow-style: none;  /* Hide scrollbar for Internet Explorer and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}



body
{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: black;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
}

.mainContainer
{
    position: relative;
    display: flex;
    width: 100vw;
    max-width: 2560px;
    background-color: rgba(71, 98, 22, 0);
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

.home
{
    position: relative;
    display: flex;
    width: 97%;
    height: 96svh;
    background-color: rgb(0, 0, 0);
    margin-top: 1vw;
    border: solid 6px #323232;
    border-radius: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* ------------ */
.LargeName
{
    position: inherit;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 65%;
    padding: 1vw;
    align-items: flex-end;
    justify-content: center;
}

.LargeName p
{
    position: inherit;
    display: flex;
    font-family: 'inter';
    font-size: 17vw;
    font-weight: 900;
    color: #c1c1c1;
    text-align: right;
    margin: 1vw;
    line-height: 14vw;
    overflow: hidden; /* Ensure overflow is hidden for wave effect */
}
.LargeName p:nth-child(2)
{
    cursor: cell;
}

.LargeName p span {
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateY(300px);
    animation: waveAnimation 1s forwards;
    pointer-events: none;
}



@keyframes waveAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.LargeName p span:nth-child(1) {
    animation-delay: 0.8s;
}

.LargeName p span:nth-child(2) {
    animation-delay: 0.7s;
}

.LargeName p span:nth-child(3) {
    animation-delay: 0.6s;
}

.LargeName p span:nth-child(4) {
    animation-delay: 0.5s;
}

.LargeName p span:nth-child(5) {
    animation-delay: 0.4s;
}

.LargeName p span:nth-child(6) {
    animation-delay: 0.3s;
}

.LargeName p span:nth-child(7) {
    animation-delay: 0.2s;
}

.LargeName p span:nth-child(8) {
    animation-delay: 0.1s;
}
/* ------------ */
.shortBioCont
{
    position: inherit;
    display: flex;
    width: 100%;
    height: 33%;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.shortBio
{
    position: inherit;
    display: flex;
    width: 36%;
    height: 100%;
    color: #7b7b7b;
    align-items: center;
    justify-content: center;
    font-family: 'inter';
    font-weight: 200;
    padding: 0 4%;
}
.abilities
{
    position: inherit;
    display: flex;
    width: 27%;
    height: 100%;
}
.recentAct
{
    position: inherit;
    display: flex;
    width: 33%;
    height: 100%;
}



.abilities 
{
    position: inherit;
    display: flex;
    width: 300px;
    height: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.carousel 
{
    position: relative;
    width: 240px;
    height: 150px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-item 
{
    position: absolute;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease, scale 0.5s ease;
    font-size: 16px;
    color: white;
    font-family: 'inter';
    font-weight: 500;
    scale: 0.6;
}

.carousel-item.middle 
{
    opacity: 1;
    transform: translateY(0);
    font-size: 24px; /* Larger font size for the middle element */
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.634));
    scale: 1;
}

.carousel-item.top 
{
    opacity: 1;
    transform: translateY(-100%);
    font-size: 24px; /* Smaller font size for the top element */
    scale: 0.6;
    opacity: 0.5;
}

.carousel-item.bottom 
{
    opacity: 1;
    transform: translateY(100%);
    font-size: 24px; /* Smaller font size for the bottom element */
    scale: 0.6;
    opacity: 0.5;
}

.recentAct
{
    position: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.recentActp
{
    position: inherit;
    color: white;
    font-family: 'inter';
    font-weight: 300;
}

.popup-button 
{
    position: relative;
    z-index: 1;
    padding: 0;
    background-color: #ff4000;
    color: rgb(0, 0, 0);
    border: none;
    cursor: pointer;
    border-radius: 50px;
    width: 100%;
    height: 100%;
    font-family: "M PLUS Rounded 1c";
    font-weight: bolder;
    font-size: 20px;
}

.popup 
{
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 0;
    height: 0;
    /* background: linear-gradient(295deg, #ff4600, #ffa800); */
    overflow: hidden;
    border-radius: 5px;
    z-index: 0;
    transition: width 0.5s ease, height 0.5s ease, opacity 1s ease;
    border-radius: 17px;
    /* border-style: solid; */
    border-color: rgb(255 255 255 / 8%);
    /* filter: blur(1px); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: #79797921;
    border-width: 1px;
  

}

.recentActBtDiv
{
    position: relative;
    display: flex;
    width: 30px;
    height: 30px;
    margin-left: 10px;
}
.recentOPOUP
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 10px 20px; */
}
.recentOPOUP a
{
    width: 100%;
    position: relative;
    display: flex;
    margin: 5px 0;
    font-family: 'inter';
    font-size: 13px;
    font-weight: 400;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    text-decoration: none;
}

/* .recentOPOUP p span
{
    width: 21px;
    background-color: antiquewhite;
    text-align: center;
    border-radius: 30px;
    color: black;
    font-weight: 900;
    rotate: 45deg;
} */


@media screen and (max-width: 650px)
{

    .home {
        position: relative;
        display: flex;
        width: 97%;
        height: 96svh;
        background-color: rgb(0, 0, 0);
        margin-top: 1vw;
        border: solid 6px #131313;
        border-radius: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .LargeName {
        position: inherit;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 65%;
        padding: 1vw;
        align-items: center;
        justify-content: center;
    }

    .shortBioCont {
        position: inherit;
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .shortBio {
        position: inherit;
        display: flex;
        width: 77%;
        height: 100%;
        color: #7b7b7b;
        align-items: center;
        justify-content: center;
        font-family: 'inter';
        font-weight: 200;
        padding: 0 4%;
    }

    .recentAct {
        position: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .recentActBtDiv {
        position: relative;
        display: flex;
        width: 35px;
        height: 35px;
        margin-left: 10px;
        flex-direction: column-reverse;
        align-items: center;
    }

    .popup {
        position: absolute;
        bottom: -3px;
        right: unset;
        width: 0;
        height: 0;
        overflow: hidden;
        border-radius: 5px;
        z-index: 0;
        transition: width 0.5s ease, height 0.5s ease, opacity 1s ease;
        border-radius: 17px;
    }
      
}






.px
{
    width: 30%;
    height: 400px;
    position: relative;
    background-color: white;
    margin: 5px;
}

.scrolling-banner {
    width: 100%;
    overflow: hidden;
    background-color: #33333300;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
}

.banner-content {
    display: flex;
}

.banner-item {
    display: inline-block;
    padding: 0 20px;
    font-size: 5em;
    color: white;
    font-family: 'bebas neue';
    white-space: nowrap;
}

.projectTxt
{
    position: inherit;
    display: flex;
    font-family: 'inter';
    font-size: 35px;
    color: #ff4000;
    margin: 0;
    font-weight: 800;
    width: 360px;
    /* text-align: center; */
    align-items: center;
    justify-content: center;
}
.prjTitleCont
{
    position: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 18em;
    scale: 0.7;
    width: 140%;
}
.prjTitleCont img
{
    width: 30px;
    margin: 10px;
}




.projects {
    column-count: 3; /* Number of columns */
    column-gap: 1em; /* Gap between columns */
    position: relative;
    width: 94vw;
}

.masonry-item 
{
    background: #e3e3e300;
    margin-bottom: 1em;
    display: flex;
    display: inline-flex;
    width: 100%;
    box-sizing: content-box;
    border-radius: 8px;
    transition: transform 0.2s ease;
    /* align-content: center; */
    align-items: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.masonry-item img
{
    width: 100%;
    scale: 1;
    transition: 0.5s scale ease-in-out;
}


.masonry-item:hover img{
    scale: 1.1;
    transition: 0.5s scale ease-in-out;
}
@media screen and (max-width: 770px)
{
    .projects 
    {
        column-count: 2; /* Number of columns */
        column-gap: 1em; /* Gap between columns */
        position: relative;
        width: 94vw;
    }
}
@media screen and (max-width: 650px)
{
    .projects 
    {
        column-count: 1; /* Number of columns */
        column-gap: 1em; /* Gap between columns */
        position: relative;
        width: 94vw;
    }
    .masonry-item:hover img{
        scale: 1;
    }

    .sklsTxt {
        position: inherit;
        display: flex;
        font-family: 'inter';
        font-size: 35px;
        color: #ff4000;
        margin: 0;
        font-weight: 800;
        width: 320px;
        /* text-align: center; */
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}



.skillExp
{
    position: relative;
    display: flex;
    width: 94vw;
    height: 96vh;
    background-color: rgba(130, 28, 28, 0);
    margin-top: 4vw;
    border-radius: 30px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 1s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}


.fade-up-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.7s ease-out, transform 1s ease-out;
}
.fade-up-down .visible {
    opacity: 1;
    transform: translateY(0);
}


.fade-left-right {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s ease-out, transform 1s ease-out;
}
.fade-left-right.visible {
    opacity: 1;
    transform: translateX(0);
}


.fade-right-left
{
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.7s ease-out, transform 1s ease-out;
}
.fade-right-left.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left-right {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s ease-out, transform 1s ease-out;
}
.fade-left-right.visible {
    opacity: 1;
    transform: translateY(0);
}
.sklsTxt
{
    position: inherit;
    display: flex;
    font-family: 'inter';
    font-size: 35px;
    color: #ff4000;
    margin: 0;
    font-weight: 800;
    width: 340px;
    /* text-align: center; */
    align-items: center;
    justify-content: center;
    text-align: center;
}
.sklsCont
{
    position: inherit;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 90px;
}

.skls
{
    padding: 3px 9px;
    border-radius: 10px;
    color: #bdbdbd;
    margin: 1px;
    border-color: #212121;
    border-width: 2px;
    border-style: solid;
    line-height: clamp(20px, 2vw, 28px);
    font-weight: 600;
    font-size: clamp(15px, 1.2vw, 20px);
    font-family: 'inter';
}

.exNInCont
{
    position: relative;
    display: flex;
    width: 100%;
    /* height: 300px; */
    /* background-color: #0048ff; */
    flex-direction: column;
    align-content: space-around;
    align-items: center;
    justify-content: center;
    font-family: 'Jost';
    line-height: 20px;
    margin-top: 50px;
    overflow: hidden;
    
}
.expContainer
{
    position: relative;
    display: flex;
    width: 100%;
    height: fit-content;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;

}
.expMiddleLine
{
    position: absolute;
    width: 5px;
    height: 95%;
    background: linear-gradient(187deg, #ff5900 -5.57%, #4200ff 55.35%, #00e7ff 107.25%);
    z-index: 1;
    border-radius: 12px;
    top: 4px;
}

.exp1Child p, .exp2Child p, .exp3Child p
{
    margin: 0;
}

.exper1
{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    line-height: clamp(0px, 2vw, 23px);
}
.exp1Child
{
    position: relative;
    display: flex;
    width: 48%;
    height: 80%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: end;
}
.exper2
{
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    line-height: clamp(0px, 2vw, 23px);
}
.exp2Child
{
    position: relative;
    display: flex;
    width: 48%;
    height: 80%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: start;
}
.exper3
{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    line-height: clamp(0px, 2vw, 23px);
}
.exp3Child
{
    position: relative;
    display: flex;
    width: 48%;
    height: 80%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: end;
}
.workName
{
    font-size: clamp(0px, 4.2vw, 25px);
    color: #b4b4b4;
    font-weight: 500;
    font-family: 'bebas neue';
}
.workTitle
{
    font-size: clamp(0px, 2.1vw, 24px);
    font-weight: 700;
    color: #fafafa;
}
.workDuration
{
    font-size: clamp(0px, 1.8vw, 20px);
    font-weight: 400;
    color: #828282;
}

@media screen and (max-width: 650px)
{
    .sklsTxt {
        position: inherit;
        display: flex;
        font-family: 'inter';
        font-size: 35px;
        color: #ff4000;
        margin: 0;
        font-weight: 800;
        width: 320px;
        /* text-align: center; */
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

.certCont
{
    position: relative;
    display: flex;
    flex-direction: row;
    width: 97%;
    height: 300px;
    justify-content: space-between;
    background: linear-gradient(274deg, #323232, #1c1c1c);
    padding: 1%;
    border-radius: 20px;
    margin-top: 80px;
}
.certCont img
{
    border-radius: 10px;
}
.certCont p
{
    position: inherit;
    display: flex;
    text-align: center;
    align-items: center;
    color: white;
    font-family: 'bebas neue';
    font-size: 20px;
    flex-direction: column;
    justify-content: center;
}
.certCont p span:nth-child(1)
{
    font-size: 95px;
}
.certCont p span:nth-child(2)
{
    font-size: 37px;
    color: #e0ff00;
}

@media screen and (max-width: 1080px)
{
    .certCont p
    {
        font-size: 22px;
    }
    .certCont p span:nth-child(1)
    {
        font-size: 80px;
    }
    .certCont p span:nth-child(2)
    {
        font-size: 30px;
    }

    .certCont
    {
        height: 250px;
    }
}
@media screen and (max-width: 850px)
{
    .certCont p
    {
        font-size: 15px;
    }
    .certCont p span:nth-child(1)
    {
        font-size: 55px;
    }
    .certCont p span:nth-child(2)
    {
        font-size: 20px;
    }

    .certCont
    {
        height: 240px;
    }
}
@media screen and (max-width: 750px)
{
    .certCont p
    {
        font-size: 15px;
    }
    .certCont p span:nth-child(1)
    {
        font-size: 55px;
    }
    .certCont p span:nth-child(2)
    {
        font-size: 20px;
    }

    .certCont
    {
        height: 213px;
    }
}
@media screen and (max-width: 650px)
{
    .certCont p span:nth-child(2) {
        font-size: 30px;
    }
    .certCont
    {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 90%;
        height: unset;
        background: linear-gradient(6deg, #323232, #1c1c1c);
        padding: 2%;
        border-radius: 20px;
        justify-content: space-between;
    }
    .certCont img {
        border-radius: 18px;
    }

    
}

.otherInv
{
    position: relative;
    display: flex;
    width: 100%;
    height: fit-content;
    flex-direction: column;
    align-items: center;
    font-size: clamp(15px, 1.5vw, 21px);
    font-weight: 400;
    line-height: 25px;
    color: #cacaca;
    font-family: 'inter';
    text-align: center;
}
.aboutmeChildSec3
{
    position: relative;
    width: -webkit-fill-available;
    height: 100%;
    background-color: rgb(11, 11, 11);
    margin: 0 0 0px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border-radius: 35px;

    border-style: solid;
    border-width: 9px;
    padding: 14px;
    border-color: #4E4E4E;
    margin-bottom: 23px;
}

.education
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 80px;
}

.eduName
{
    font-size: clamp(0px, 5vw, 32px);
    font-weight: 900;
    color: #bfbfbf;
    font-family: 'bebas neue';
}
.eduTitle
{
    font-size: clamp(0px, 3.5vw, 22px);
    font-weight: 400;
    color: #909090;
    font-family: 'Jost';
}
.eduDuration
{
    font-size: clamp(0px, 3.8vw, 25px);
    font-weight: 400;
    font-family: 'inter';
    color: #909090;
}

.oneBorder
{
    position: inherit;
    display: flex;
    border-top: 2px solid rgb(44 44 44);
    width: 60%;
    color: #dbdbdb;
    font-family: 'inter';
    margin-top: 100px;
    flex-direction: row;
    justify-content: space-between;
}
.oneBorder p
{
    font-weight: 700;
    color: #4e4e4e;
}


.socialsLinks
{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    margin: 20px 0;
    gap: 8px;
}
.socialsLinks a
{
    text-decoration: none;
    color: white;
}

.spanArrow
{
    background-color: #e0e0e0;
    display: inline-flex;
    border-radius: 30px;
    color: #F44336;
    font-weight: 900;
    font-family: 'system-ui';
    height: 19px;
    width: 18px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.iiiimg
{
    position: absolute;
    height: 100%;
    /* display: none; */
    filter: invert(100%);
    transition: opacity 0.5s, visibility 0s;
    visibility: hidden;
    /* display: flex; */
    opacity: 0;
}
.imgLink1,.imgLink2,.imgLink3,.imgLink4,.imgLink5, .imgLink6
{
    left: -480px;
    top: 0px;
}
/* .imgLink2
{
    left: -263px;
    top: 0px;
}
.imgLink3
{
    left: -263px;
    top: 0px;
}
.imgLink4
{
    left: -263px;
    top: 0px;
}
.imgLink5
{
    left: -263px;
    top: 0px;
}
.imgLink6
{
    left: -263px;
    top: 0px;
} */
.socialsLinks a:hover .iiiimg
{
    transition: opacity 0.5s, visibility 0s;
    visibility: visible;
    /* display: flex; */
    opacity: 1;
}
.socialsLinks a:hover .spanArrow
{
    background-color: #ff5900;
    color: #000000;
}
@media screen and (max-width: 1150px)
{
    .imgLink1,.imgLink2,.imgLink3,.imgLink4,.imgLink5, .imgLink6
    {
        left: -430px;
    }
}
@media screen and (max-width: 1050px)
{
    .imgLink1,.imgLink2,.imgLink3,.imgLink4,.imgLink5, .imgLink6
    {
        left: -380px;
    }
}
@media screen and (max-width: 950px)
{
    .imgLink1,.imgLink2,.imgLink3,.imgLink4,.imgLink5, .imgLink6
    {
        left: -330px;
    }
}
@media screen and (max-width: 850px)
{
    .imgLink1,.imgLink2,.imgLink3,.imgLink4,.imgLink5, .imgLink6
    {
        left: -280px;
    }
}
@media screen and (max-width: 750px)
{
    .imgLink1,.imgLink2,.imgLink3,.imgLink4,.imgLink5, .imgLink6
    {
        left: -230px;
    }
}
@media screen and (max-width: 650px)
{
    .oneBorder {
        position: inherit;
        display: flex;
        border-top: 2px solid rgb(44 44 44);
        width: 90%;
        color: #dbdbdb;
        font-family: 'inter';
        margin-top: 100px;
        flex-direction: row;
        justify-content: space-between;
    }
    .imgLink1,.imgLink2,.imgLink3,.imgLink4,.imgLink5, .imgLink6
    {
        left: -180px;
    }
    .socialsLinks a:hover .iiiimg
    {
        transition: opacity 0.5s, visibility 0s;
        visibility: hidden;
        /* display: flex; */
        opacity: 0;
    }
}

.myface
{
    position: absolute;
    display: flex;
    height: 100%;
    right: 0;

    /* left: 0;
    transform: scaleX(-1); */
}


.cls2 {
    opacity: 0;
    transition: opacity 1.5s ease; /* Adjust the fade duration here */
}

.cls2.visible {
    opacity: 1;
    transition: opacity 1.5s ease;
}

.myfaceOverlay
{
    position: absolute;
    height: 100%;
    right: 0;
    display: none;
    z-index: 2;
}
.cls3 {
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Adjust the fade duration here */
}

.cls3.visible {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}


.footer 
{
    display: flex;
    position: relative;
    width: 90%;
    height: clamp(0px, 40vw, 240px);
    color: #d0d0d0;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    margin-bottom: clamp(0px, 9vw, 45px);
    font-family: 'Inter', sans-serif;
    font-size: clamp(0px, 2.5vw, 11px);
    /* margin-bottom: 100px; */
    padding-bottom: 60px;
}
.footer p
{
    margin: 0;
}

.footer p a {
    text-decoration: none; /* Removes the underline */
    color: rgb(255 80 0);
    font-weight: 700;
}
.copyright
{
    font-weight: 700;
}


/* ----------------------------------------------------------------------- */
.projectsmainContainer
{
    position: relative;
    display: flex;
    width: 100vw;
    max-width: 1920px;
    background-color: rgba(71, 98, 22, 0);
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

.prjCoverImg
{
    width: 100%;
    border-radius: 10px;
}

.projectPgTitle
{
    font-family: 'bebas neue';
    color: #e5e5e5;
    font-size: clamp(35px, 5vw, 80px);
    margin-bottom: 100px;
    margin-top: 5px;
}

.prjoneBorder
{
    position: inherit;
    display: flex;
    border-top: 2px solid rgb(44 44 44);
    width: 70%;
    color: #909090;
    font-family: 'inter';
    margin-top: 20px;
    flex-direction: row;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
}

.sklsInv
{
    font-weight: 400;
    color: #dbdbdb;
    width: 80%;
    text-align: right;
}


.prjImgGridCont
{
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 90%;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
    gap: 10px;
    margin-top: 100px;
}
.prjImgGridCont img
{
    position: inherit;
    width: 100%;
    border-radius: 10px;
}

.visitCont
{
    display: flex;
    position: relative;
    width: 70%;
    flex-direction: row-reverse;
    align-items: center;
}
.visitCont a
{
    position: relative;
    display: flex;
    text-decoration: none;
    color: #f44336;
    font-family: system-ui;
    gap: 3px;
    background-color: #e0e0e0;
    padding: 4px 10px;
    font-weight: 400;
    border-radius: 80px;
    align-items: center;
    box-shadow: 0 0 8px #ff510000;
}

.visitCont a:hover
{
    box-shadow: 0 0 8px #ff5000;
}

.goBack
{
    position: absolute;
    display: flex;
    width: 95%;
    flex-direction: row;
    align-items: center;
    top: 20px;
}
.goBack a
{
    position: relative;
    display: flex;
    text-decoration: none;
    font-weight: 400;
    align-items: center;
}
.back
{
    rotate: 225deg;
    height: 30px !important;
    width: 29px !important;
}

/* .onPrj
{
    position: absolute !important;
    position: absolute !important;
    z-index: 1;
    left: 8px;
    top: 8px;
} */

.infoArr {
    position: absolute;
    display: flex;
    text-decoration: none;
    color: #f44336;
    font-family: system-ui;
    gap: 3px;
    padding: 2px;
    font-weight: 400;
    border-radius: 80px;
    align-items: center;
    
    text-decoration: none;
    z-index: 1;
    margin: 0;
    bottom: 10px;
    left: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #ffffff0d;
    animation: pulse 2s infinite;
}
.sa
{
    animation: pulse 2s infinite;
    color: white;
}

@keyframes pulse 
{
    0% {
        background-color: #ff620000;
        box-shadow: 0 0 8px #ffa60000;
    }
    50% {
        background-color: #ff6200;
        box-shadow: 0 0 3px #ff0000;
    }
    100% {
        background-color: #ff620000;
        box-shadow: 0 0 8px #ffa60000;
    }
}

.lrn
{
    display: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    margin-left: 4px;
}


@media screen and (min-width: 650px)
{
        .masonry-item:hover .lrn
        {
        display: flex;
        }
        .masonry-item:hover .infoArr
        {
            background-color: #ff6200 !important;
        }
        .masonry-item:hover .projectTitles

        {
            visibility: hidden;
        }
}


@media screen and (max-width: 750px)
{
    /* .goBack a {
        position: relative;
        display: flex;
        text-decoration: none;
        color: #f44336;
        font-family: system-ui;
        gap: 0px;
        background-color: #e0e0e0;
        padding: 0px 5px 0 0;
        font-weight: 400;
        border-radius: 80px;
        align-items: center;
        box-shadow: 0 0 8px #ff510000;
        font-size: 10px;
    } */
    .visitCont a:hover
    {
        box-shadow: 0 0 8px #ff510000;
    }
    .prjoneBorder 
    {
        position: inherit;
        display: flex;
        border-top: 2px solid rgb(44 44 44);
        width: 88%;
        color: #909090;
        font-family: 'inter';
        margin-top: 20px;
        flex-direction: row;
        justify-content: space-between;
        font-weight: 700;
        font-size: 12px;
    }

    .visitCont
    {
        width: 88%;
    }

    .visitCont a
    {
        position: relative;
        display: flex;
        text-decoration: none;
        color: #f44336;
        font-family: system-ui;
        gap: 0px;
        background-color: #e0e0e0;
        padding: 2px 8px;
        font-weight: 400;
        border-radius: 80px;
        font-size: 12px;
        /* text-align: center; */
        align-items: center;
    }
}

.projectTitles
{
    position: absolute;
    font-family: 'bebas neue';
    width: 160px;
    left: 30px;
    color: white;
    filter: drop-shadow(0 1 0 black);
    filter: drop-shadow(0 0 9px black);
}