.team-container{
    margin: 20px 40px;
    max-width:100%;
}
.position-container{
    border-bottom: 1px solid gray;
    padding: 20px 0;
}
.player-holder{
    background: radial-gradient(#132348c7 10%,#0b1335, #070929);
    width:100%;
    height:28rem;
    position: relative;
    margin-bottom:30px;
    padding:10px 10px 0 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 10px rgba(0,0,0,0.3);
}
.cd .player-holder{
    height:16rem;

}

.staff-holder{
    width:100%;
    height:28rem;
    position: relative;
    margin-bottom:30px;
    padding:10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 10px rgba(0,0,0,0.1);
}
.player-holder:hover .player-img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    transition: 0.8s;
}
.player-img,.staff-img{
    object-fit: contain;
    object-position: bottom;
    width:100%;
    height:100%;
    border-radius: 10px;
    transition: 0.8s;
}
.player-detail{
    position: absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to bottom, transparent 40%, transparent,rgba(19, 28, 62, 0.4),rgb(8, 12, 44));        top:0;
    left:0;
    right:0;
    color:white;
    border-radius: 10px;
}
.player-info{
    position: absolute;
    bottom:10px;
    width:70%;
    padding: 0 10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}
.cd .player-info{
    bottom:0
}
.player-info p{
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
    font-family: "Arial Narrow",Helvetica,sans-serif;
}
.player-info h3{
    text-transform: uppercase;
    font-weight: bold;
    margin: 8px 0;
    font-family: "Arial Narrow",Helvetica,sans-serif;
}
.cd .position-container .col-md-4,.cd  .position-container .col-lg-3,.cd .position-container .col-sm-6,.cd .position-container .col-md-2, .cd .position-container .col-lg-2, .cd .position-container .col-xs-6 {
    padding-left: 5px;
    padding-right: 5px;
}
.jno{
    position: relative;
}
.jno::after{
    content: "";
    width:15px;
    height:3px;
    background: #e52107;
    position: absolute;
    bottom: -3px;
    left:0;
}
.staff-img-holder{
    width:100%;
    height:70%;
}
.staff-detail{
    width:100%;
    height:30%;
    text-align: center;
}
.staff-detail h3{
    font-size:18px;
    font-weight: bold;
    margin: 8px 0;
    font-family: "Arial Narrow",Helvetica,sans-serif;
    text-transform: uppercase;
}
@media (min-width:200px) and (max-width:767px){
    .staff-img-holder{
        height:65%;
    }
    .staff-detail{
        height:35%;
    }
    .staff-detail h3{
        font-size:16px;
    }
    .team-container {
        margin: 20px 0;
        overflow-x:auto;
    }
    .position-container .col-md-4, .position-container .col-lg-3,.position-container .col-sm-6,.position-container .col-md-2,.position-container .col-lg-2,.position-container .col-xs-6 {
        width:49%;
        padding: 0 5px;
    }
    .position-container .row{
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .player-detail h3, .staff-detail h3{
        font-size:18px;
    }
    .player-holder, .staff-holder{
        margin-bottom: 15px;
        height:22rem;
    }
}