body, button{
    font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}


*{
    margin: 0;
    padding: 0;
}

body{
    scroll-behavior: smooth;
    font-family: "Albert Sans", sans-serif;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #001819;
  border-radius: 0;
}

body::-webkit-scrollbar-thumb {
  background-color: #79b900;
  border-radius: 0;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #79b900;
  cursor: pointer;
}


.banner-text1{
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.team{
    width: 70%;
    margin: auto;
    padding: 80px 0;
}

.team-text{
    text-align: center;
}

.team-text1{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.team-text1 h3{
    font-size: 14px;
    color: #79b900;
    font-weight: 500;
}

.team-text h1{
    color: #001819;
    font-size: 46px;
    margin-bottom: 18px;
}

.team-boxs{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 170px;
}

.team-box-img img{
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid #79b900;
}

.team-box {
    position: relative;
    padding: 130px 40px 40px 40px;
    width: 33%;
    background-color: #f5f8ed;
    cursor: pointer;
}

.team-box::after {
    content: "";
    width: 0%;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #79b900;
    opacity: 0;
    transition: all 0.3s ease-in-out; /* 🔑 Këtu e shtojmë */
}

.team-box:hover::after {
    width: 100%;
    opacity: 1;
}


.team-box-text{
    text-align: center;
}

.team-box-img{
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
}

.team-box-img img{
    width: 250px;
    height: 250px;
}

.team-box-text h2{
    color: #001819;
    font-size: 26px;
    font-weight: 600;

}

.team-box-text p{
    color: #79b900;
    margin: 15px 0;
}


.team-box-buttons{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.team-box-buttons button{
    color: #868681;
    background-color: transparent;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgb(222, 228, 218);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.team-box-buttons button:hover{
    background-color: #79b900;
    color: #fff;
    border: none;
}

@media screen and (max-width:768px) {
    
    .banner{
        width: 100%;
        height: 350px;
    }

    .banner-text{
        width: 90%;
        margin: auto;
        text-align: center;
    }

    .team{
        width: 90%;
        margin: auto;
        flex-direction: column;
    }

    .team-text h1{
        font-size: 35px;
    }

    .team-boxs{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 100px;
    }

    .team-box{
        width: 100%;
    }

    

}

