/* VIDEO BACKGROUND */

.video-bg{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}



/* TITLE */

.team-title{
text-align:center;
padding-top:160px;
margin-bottom:80px;
}

.team-title h1{
font-size:60px;
}

.title-line{
width:60px;
height:2px;
background:white;
margin:20px auto;
}



/* TEAM GRID */

.team-grid{

width:85%;
margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:60px;

padding-bottom:140px;

}



/* TEAM CARD */

.team-card{

background:linear-gradient(
to bottom,
rgba(0,0,0,.96),
rgba(0,0,0,.92)
);

padding:45px;

border-radius:18px;

transition:.35s;

position:relative;

border:1px solid rgba(255,255,255,.06);

box-shadow:0 20px 50px rgba(0,0,0,.75);

display:flex;
flex-direction:column;

}

.team-card:hover{
transform:translateY(-10px);
}



/* IMAGE */

.team-card img{

width:180px;
height:180px;

border-radius:50%;

object-fit:cover;

margin:0 auto 20px auto;

}



/* TEXT */

.team-card h2{

font-size:28px;

margin:10px 0 6px 0;

text-align:center;

}

.team-card h4{

color:#cfcfcf;

margin-bottom:22px;

font-style:italic;

letter-spacing:.4px;

text-align:center;

}

.team-card p{

font-size:16px;

line-height:1.75;

color:#f0f0f0;

text-align:left;

margin-top:10px;

margin-bottom:35px;

}


/* LINKEDIN ICON */

.linkedin-link{
margin-top:auto;
align-self:flex-start;
}

.linkedin-link img{

width:22px !important;
height:22px !important;

max-width:22px !important;
max-height:22px !important;

display:block;
object-fit:contain;

}

.linkedin-link img:hover{
opacity:1;
transform:scale(1.15);
}


/* RESPONSIVE */

@media (max-width:1000px){

.team-grid{
gap:50px;
}

}

@media (max-width:700px){

.team-title h1{
font-size:42px;
}

.team-grid{

grid-template-columns:1fr;

width:90%;

}

.team-card{

padding:35px;

}

.team-card img{

width:150px;
height:150px;

}

}