/* common */
*{
    box-sizing: border-box;
    padding: 0%;
    margin: 0%;
    font-family: "Poppins", sans-serif;
}
.center{
    justify-content: center;
}
.flex{
    display: flex;
}
.flex-column{
    display: flex;
    flex-direction: column;
}

/* container */
.container{
    max-width: 1414px;
    margin: auto;
}
.btn{
    background-color: #DD0000;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}
.btn-Upcoming{
    background-color: #ffffff;
    color: #161616;
    padding: 17px 39px;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 500;
    gap: 10px;
    border: none;
    width: 252px;
    height: 64px;
    display:grid ;
    justify-content: center;
}
.btn-Group{
    background-color: #ffffff;
    color: #161616;
    padding: 17px 40px;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 500;
    gap: 10px;
    border: none;
    width: 252px;
    height: 64px;
    display:grid ;
    justify-content: center;
}
.btn-blog{
    background-color: #DD0000;
    color: #fff;
    padding: 17px 40px;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 500;
    gap: 10px;
    border: none;
    width: 252px;
    height: 64px;
    display:grid ;
    justify-content: center;
}

.btn-primary img{
    width: 25px;
    height: 25px;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
}

/* header */
.banner{
    margin-top: 80px;
    display: flex;
    background-color: #161616;
    padding: 0;
    align-items: center;
    border-radius: 15px;
    justify-content: space-around;
    margin-bottom : 100px ;
}
header h1{
    color: #fff;
    font-size: 4.3rem;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 19px;
}
header p{
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 19px;
}
header img{
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
}
.header-left{
    max-width: 568px;
    margin-left: 125px;
}
.header-right{
    margin-top: 33px;
}

/* video section */
.video{
    display: flex;
    justify-content: space-between;
    margin-bottom: 130px ;
}
.video-left{
    background-color: #161616;
    width: 312px;
    height: 312px;
    border-radius: 15px;
    display: grid;
    place-items: center;
}
.video-right{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}
.video-card{
    border: #1616162f solid 1px;
    width: 312px;
    height: 362px;
    border-radius: 10px;
}
.video-card img{
    height: 180px;
    width: 100%;
    border-radius: 10px 10px 0px 0px;

}
.video-card-content{
    margin: 15px;
}
.video-card h3{
    font-size: 1.1rem;
    font-weight: 300px;
    margin-bottom: 20px;
}
.btn-card{
    background-color: #ffffff;
    color: #161616;
    padding: 4px 16px;
    border-radius: 5px;
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    border: #161616 solid 1px;
    margin-bottom: 15px ;
}
.video-card-time-comment{
    gap: 40px;
}
.clock-icon{
    margin-right: 8px;
}
.comment-icon{
    margin-right: 8px;
}

/* footer */
.footer{
    background-color: #161616;
    padding: 130px 0;
    color: #fff;
    text-align: center;
    align-items: center;
    justify-content: center;

}



