/* -------------------------------------
        common styles or utiilties
---------------------------------------*/
body{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h3{
    font-size: 28px;
    font-weight: 700;
}
p{
    font-size:16px;
    font-weight: 400;
}
h1{
    font-size: 64px;
    color: white;
}

/*--------------------------------------
            header section
-------------- ------------------------- */
header{
    background-color: #2D25A0;
    height: 677px;
    width: 100%;
    margin-bottom: 50px;
}


.banner{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
nav{
    
    width: 1160px;
    height: 44px;
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
nav .fa-list-ul{
    font-size: 0px;
}
a{
    font-size: 16px;
    color: white;
    text-decoration: none;
    margin-left:36px;
}
.right-button,.center-button{
    display: flex;
    flex-direction: row;
    background-color: #E02C6D;
    color:white;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
}
.right-button a{
    margin-left: 10px;
}
.center-button {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* -------------------------------------
         banner image and text-content
--------------------------------------- */
.banner-content{
    display: flex;
    flex-direction: row;
    margin-left:156px;
    margin-right: 140px;
}
.banner-text h1{
    margin-top: 0px;
    margin-bottom: 25px;
}

.center-button{
    display: inline;
    background-color: #E02C6D;
    color:white;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 30px;
}
.banner-image img{
    Width:556.01px;
    Height:438px
}

/* transform image  */

.banner-image:hover{
    transform: scale(1.1);
    transition: transform 1.5s;
}





/* -------------------------------------
             player-section
----------------------------------------*/

.top-section{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1700px;
}
.players{
    align-items: center;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    Width:1050px;
    Height:474px;
    margin-right: 10%;
}
.player{
    width: 330px;
    height: 474px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    margin-bottom:27px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.player img{
    width: 300px;
    height: 256px;

}




/*----------------------------------------------------------
                             footer
-----------------------------------------------------------  */

/* font  */
@import url('https://fonts.googleapis.com/css2?family=Niconne&display=swap');


.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
    grid-auto-flow: dense;
    grid-gap:5px;
    margin-bottom: 100px;

}
.gallery img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.big{
    grid-column: auto / span 3;
    grid-row: auto / span 3;
}
.small{
    grid-column: auto / span 1;
    grid-row: auto / span 1
}
.pot{
    grid-row: auto / span 3;
}
.land{
    grid-column: auto / span 3;
}
.square{
    grid-column: auto / span 2;
    grid-row: auto / span 2
}
.youtube{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h2{
    font-family: 'Niconne', cursive;
    font-size: 72.58px;
    color:#10437A;
}
.social-icon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.social-icon i{
    height: 32px;
    width: 32px;
    color: #969BAB;
}

/* END  */



/*------------------ media query----------------------  */

/* -----------------------------------------------------
                    SMALL DEVICES
-------------------------------------------------------  */

@media only screen and (max-width:576px){
    h1{
        font-size: 36px;
    }
    header{
        width: 100%;
        height: 800px;
    }

    nav .left-section a{
        display: none;
    }
    nav .fa-list-ul{
        padding-top: 10px;
        color: white;
        font-size: 30px;
        margin-left: 50px;
    }
    .banner-content{
        flex-direction: column;
        align-items: center;
    }
    
    
    .banner-image img{
        height: 300px;
        width: 350px;
        margin-top: 30px;
    }

    .players{
        grid-template-columns: repeat(1,1fr);
        margin-bottom: 4300px;
        margin-left: 40px;
        
    }
}
/*----------------------------------------------------
                   MEDIUM DEVICES
-------------------------------------------------------  */
@media only screen and (min-width:576px) and (max-width:992px){
    h1{
        font-size: 46px;
    }
    .players{
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 1100px;
        margin-left: 40px;
    }
    .banner-content{
        justify-content: center;
    }
    .banner-image img{
        height: 350px;
        width: 370px;
    }
}