/* play button css  */
.main_page_wrap video {
    width: 100%;
    display: block;
}
.video_player,
.video_poster_inner {
    position: relative;
}
.video_poster_img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.video_poster_inner {
    height: 100%;
}
.video_poster_inner img {
    cursor: pointer;
}

.video_poster_inner img {
    display: block;
    height: 100%;
}


.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
& img {
    max-width: 30px;
    margin: auto;
    cursor: pointer;
    }
}
/* play button css end */
.main_page_wrap{
    background: #233041;
}
/* hero banner css start */
.nba_brand_wrapper {
    display: grid;
    /* grid-template-columns: 70% 30%; */
    grid-template-columns: calc(65% - 40px) 35%;
    column-gap: 40px;
    align-items: center;
}
.nba_video {
    position: relative;
}
.nba_video h4 {
    /* position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%); */
    font-size: 30px;
    line-height: 45px;
    color: #ffffff;
}
.nba_content h2 {
    text-align: left;
    font-size: 44px;
}
.nba_content h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #aeaeae;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}
.nba_content h3:before {
    content: '';
    background-image: url(../images/motion_logo.png);
    position: absolute;
    top: 0;
    left: 0px;
    height: 20px;
    width: 30px;
    background-repeat: no-repeat;
}
.nba_content p {
    text-align: left;
}
/* hero banner css end */

/* episode css start */
.episode_wrapper {
    position: relative;
}
.episode_wrapper h4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 44px;
    text-transform: uppercase;
    color: #aeaeae;
    font-weight: 800;
}
/* episode css end */

/* video with text start */
section.video_with_content{
    padding-top: 0;
}
.video_row_wrapper {
    display: flex;
    column-gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}
.video_row_wrapper:last-child {
    margin-bottom: 0;
}
.text_col {
    width: 40%;
}
.video_col {
    width: 60%;
}
.video_row_wrapper:nth-child(even) .text_col {
    order: 2;
}
.text_col h3 {
    margin-bottom: 0;
}
.text_col h3,
.text_col h2,
.text_col p {
    text-align: left;
}
/* more work css start */
.more_work {
    background: #151e2a;
}
.work_row_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    margin-top: 40px;
}
.more_work_wrapper h2 {
   font-weight: 400;
}
.work_row_wrap .work_content h3 {
    font-weight: 400;
    margin: 20px 0 10px 0;
}
.work_row_wrap .work_content h2 {
    font-size: 20px;
}


/* more work css end */

@media screen and (max-width: 767px){
/* banner css  */
.play_btn{
    width: 100%;
    padding: 0 15px;
    text-align: center;
}
.nba_brand_wrapper{
    grid-template-columns: auto;
    gap: 20px;
}
.nba_video h4 {
    font-size: 20px;
    line-height: 30px;
}
.nba_content h2, .episode_wrapper h4{
    font-size: 30px;
}
.episode_wrapper h4{
    text-align: center;
    width: 100%;
}
/* banner css end */

/* grid css start  */
.video_row_wrapper{
    flex-direction: column;
    gap: 20px;
}
.video_row_wrapper > div{
    width: 100%;
}
.video_col{
    order: -1;
}
/* grid css end */
}