@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
.projects{
    width: 100%;
    /* height: 90vh; */
    background-color: rgb(25, 26, 28);
    /* position: relative;
    top: 80px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0px;
}

.inner-project{
    width: 100%;
    /* height: 80vh; */
    background-color: rgb(25, 26, 28);
    /* position: relative;
    top: 80px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.projects-inner1{
    width: 50%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}


.projects-inner1 h6{
    font-family: "Saira", sans-serif;
    color: #75dab4;
    font-size: 19px;
    position: relative;
    padding-bottom: 2px;
}

.projects-inner1 h2{
    font-family: "Saira", sans-serif;
    font-weight: 600;
    color: white;
}

.projects-inner1 p{
    text-align: center;
    color: white;
    font-family: "Saira", sans-serif;
}

.projects-inner1 h6::before{
    content: "";
    width: 100%;
    height: 1.5px;
    position: absolute;
    background-color: #75dab4;
    bottom: 0;
}

.projects-inner2{
    width: 80%;
    height: 60%;
    /* background-color: yellow; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.team{
    width: 300px;
    /* height: 300px; */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: 0.5s ease;
    margin: 10px 10px;
}

.team-inner{
    width: 100%;
    background-color: white;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-inner h4{
    font-family: "Saira", sans-serif;
    color: black;
}
.team-inner h6{
    font-family: "Saira", sans-serif;
    color: black;
}

.team-social{
    width: 20%;
    background-color: rgba(0, 0, 0, 0.533);
    height: 100%;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    animation-fill-mode: forwards; /* Keeps the final state after animation ends */
}

.team-social h6{
    color: white;
}

.team:hover .team-social{
    animation-name: teamsocial;
    animation-duration: 0.3s; /* Duration of the animation */
    animation-timing-function: ease; /* Easing function */
}

@keyframes teamsocial {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.team-social a{
    color: white;

    cursor: pointer;
}

.team-icons{
    width: 100%;
    height: 31%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 118px;
}

@media screen and (max-width:834px) {
    .projects-inner1 {
        width: 100%;
    }
}


