*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(background_img.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;

}
.nav_link{
    flex: 1;
    text-align: right;
}

.nav_link ul li{
    list-style: none;
    display: inline-block;
    padding: 12px 24px;
    position: relative;
}
.nav_link ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
.nav_link ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav_link ul li:hover::after{
    width: 100%;
}
.text_box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text_box h1{
    font-size: 62px;
}
.text_box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin: 20px
 
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 0.5s;
}

nav .bi{
    display: none;
}

@media all and (max-width: 700px){
    .text_box h1{
        font-size: 20px;
    }
    .nav_link ul li{
        display: block;
    }
    .nav_link ul{
        padding: 30px;
    }
   
}




.GetStarted{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.GetStarted h1{
    font-size: 36px;
    font-weight: 600;
}

.player-col p{
    color: #777;
    font-size: 14px;
    font-weight: 300px;
    line-height: 22px;
    padding: 10px;

}

.GetStarted p{
    color: #777;
    font-size: 14px;
    font-weight: 300px;
    line-height: 22px;
    padding: 10px;




}
.row{
    display: flex;
    justify-content: space-around;
}
.img-col{
    display: flex;
    margin-left: 20px;
}
.img-col img{
    flex-basis: 32%;
}

.player{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.player-col{
    margin-top: 30px;
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
    transition: transform .5s;
    box-shadow: 0 10px 20px 3px #E3E9FF;
}

.player-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.player-col:hover{
    transform: translateY(-7px);
}


.title_text{
    padding: 100px 0 20px;
    text-align: center;
}
.title_text h1{
    
    margin-top: 200px;
    color: black;
}
.title_text a{
    text-decoration: none;
    color: #fff;
}
.title_text a:hover{
    color: #f44336;
}



#footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icon .bi{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}


.player-col .bi{
    color: #f44336;
}

footer{
    background: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7));
}

#footer p,h4{
    color: #fff;
}

.col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-top: 5%;
    text-align: left;   
}

.col img{
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}

.col p{
    padding: 0;
    text-align: center;
}

.col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
}

.box1 p{

    text-align: justify;
    padding: 0.5rem;
    width: 400px;
    height: 450px;
}
.box1{
    display: flex;
    justify-content: center;
}

.what{
    text-align: center;
}

.player1{
    margin-top: 100px;
    text-align: center;
    margin-bottom: 50px;
}


.text_box1{
    margin-left: 5px;
}
@media all and (max-width: 700px) {
    .row{
        flex-direction: column;
    }
    .box1{
        flex-direction: column;
        justify-content: center;
    }
    .box1 img{
        width: 100%;
        height: 250px;
    }
    .box1 p{
        width: 100%;
        flex-wrap: wrap;
        }
    #footer p{
        width: 100%;
    }

    .player1{
        width: 100%;
    }

}

.col img:hover{
    transform: translateY(7px);
    transition: 0.5s;
}