@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;700&display=swap');


.team-ti {
    font-family:"inter";
    text-transform: uppercase;
    font-size: 47px;
    background: rgb(132,150,150);
    background: linear-gradient(72deg, rgba(132,150,150,1) 3%, rgba(4,226,255,1) 30%, rgba(254,153,0,1) 66%);
    /*background: linear-gradient(to right,#04e2ff, #fe9900);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.containterdi-team{
    display: flex;
    justify-content: center;
    padding-top: 200px;
    background-color: #111;
}


.cont-team-s {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
}

.team{
	position: relative;
	width: 100%;
    height: 87vh;
	background: #111;
	display: flex;
	align-items: center;
	justify-content: center;
}


.team-content{
	width: 60%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    align-items: stretch;
    justify-items: center;
    text-align: center;
	gap: 2rem;
}

.team-content img{
	width: 100%;
	height: auto;
    align-content: center;
	border-radius: 15px;
	padding-bottom: 10px;
}

.box {
    --x: 10%;
	--y: 10%;

    position: relative;
    appearance: none;
    color: #fff;
    outline: none;
    border: 4px solid transparent;
    cursor: pointer;
    padding: 16px;
    background: linear-gradient(#111, #111) padding-box, radial-gradient(farthest-corner at var(--x) var(--y), rgba(4,226,255,1), rgba(254,153,0,1)) border-box;
	border-radius: 20px;
    transition: transform 200ms ease;
}


.box h3 {
    padding-top: 20px;
	font-family:"inter";
    align-content: center;
    font-size: 23px;  
	font-weight: 600;
	color: #fff;
}

.box h5 {
    padding-top: 15px;
	font-family:"inter";
    font-size: 15px;
	font-weight: 600;
	color: #808080;
	letter-spacing: 2px;
}

.icons {
    padding-top: 15px;
}

.icons i{
	display: inline-block;
	color: #808080;
	font-size: 20px;
	padding: 0 8px;
	transition: all .38s ease;
    font-family: 'remixicon' !important;
}

.icons i:hover{
	transform: scale(1.2);
}

.box:hover{
	transform: translateY(-10px);
	cursor: pointer;
} 



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


    .team-ti {
        font-size: 37px;
    }

    .box h3{
        font-size: 17px !important;  
        }

    .box h5 {
        font-size: 15px !important;
    }

    .team-content{
        width: 70%;
    }
    
}
    
@media screen and (max-width: 568px){

    .team {
        margin-left: 0%;
    }
    
    .team-ti {
    font-size: 37px;
}

}

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

    .box {
        width: 60%;
    }
    .team-content{
		grid-template-columns: 1fr;
        width: 40%;
	}

}

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

    .team-content{
        width: 80%;
    }

    .box {
        border: 3px solid transparent;
    }

    .box h3 {
        font-size: 20px;  
    }

    .icons i{
        font-size: 20px;
    }


}

@media(max-width: 1240px){
	.team{
		width: 100%;
		height: auto;
		padding: 90px 2%;
	}
}

@media screen and (min-width: 2300px) and (max-width:3200px){

    .team-ti {
        font-size: 5.2rem;
    }
    .team-content{
        width: 70%;
        gap: 4rem;
    }

    .box {
        border: 6px solid transparent;
        padding: 30px;
        border-radius: 25px;
    }
    
    .box h3{
    font-size: 35px;  
    }

    .box h5{
    font-size: 30px;
    }

    .icons i{
    font-size: 40px;
    }

}