.hidden {
  display: none;
  opacity: 0;
}

.bnpp-video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;

  .video_content {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 1253px;
    max-height: 904px;
    flex-wrap: wrap;
    gap: 6px;
    opacity: 1;
    transition: opacity 0.3s ease;
    position: relative;

    .first_video {
        width: 1253px;
        height: 352px;
        border-radius: 10px;
        position: relative;
    }

    .other_video {
        width: 413px;
        height: 286px;
        border-radius: 10px;
        position: relative;
    }

    .other_wide_video {
        width: 623px;
        height: 286px;
        border-radius: 10px;
        position: relative;
    }
  }
}



.bnpp-video-grid.dark {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
  background-color: #0C2728;

  .video_content {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 1253px;
    max-height: 904px;
    flex-wrap: wrap;
    gap: 6px;
    opacity: 1;
    transition: opacity 0.3s ease;
    position: relative;

    .first_video {
        width: 1253px;
        height: 352px;
        border-radius: 10px;
        position: relative;
    }

    .other_video {
        width: 413px;
        height: 286px;
        border-radius: 10px;
        position: relative;
    }

    .other_wide_video {
        width: 623px;
        height: 286px;
        border-radius: 10px;
        position: relative;
    }
  }
}

.first_video .title_content {
    position: absolute;
    top: 63px;
    left: 61px;
    color: #FFF;
    font-family: "BNPP Sans Condensed";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;

    .title {
        font-size: 48px;
    }

    .sub_title {
        font-size: 40px;
        margin: 0;
    }
}

.first_video .text_content {
    color: #FFF;
    font-family: "BNPP Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 0.5px;
    position: absolute;
    left: 61px;
    bottom: 36px;

    p {
        width: 237px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.first_video .button_play {
    position: absolute;
    left: 568px;
    top: 128px;
    width: 118px;
    height: 118px;
    border: none;
    cursor: pointer;
    background: no-repeat center / 100% 100% url(../assets/play_light.svg?1=1);
}

.dark .first_video .button_play {
    position: absolute;
    left: 568px;
    top: 128px;
    width: 118px;
    height: 118px;
    border: none;
    cursor: pointer;
    background: no-repeat center / 100% 100% url(../assets/play_dark.svg?1=1);
}

.other_video .button_play {
    position: absolute;
    left: 176px;
    top: 113px;
    width: 61px;
    height: 61px;
    border: none;
    cursor: pointer;
    background: no-repeat center / 100% 100% url(../assets/play_light.svg?1=1);
}

.dark .other_video .button_play {
    position: absolute;
    left: 176px;
    top: 113px;
    width: 61px;
    height: 61px;
    border: none;
    cursor: pointer;
    background: no-repeat center / 100% 100% url(../assets/play_dark.svg?1=1);
}

.other_video .text_content {
    color: #FFF;
    font-family: "BNPP Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 0.5px;
    position: absolute;
    left: 61px;
    bottom: 18px;

    p {
        width: 288px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.other_video .title_content {
    position: absolute;
    top: 18px;
    left: 61px;
    color: #FFF;
    font-family: "BNPP Sans Condensed";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;

    .title {
        font-size: 40px;
        margin: 0 0 8px 0;
    }

    .sub_title {
        font-size: 30px;
        margin: 0;
    }
}

.other_wide_video .button_play {
    position: absolute;
    left: 274px;
    top: 113px;
    width: 61px;
    height: 61px;
    border: none;
    cursor: pointer;
    background: no-repeat center / 100% 100% url(../assets/play_light.svg?1=1);
}

.dark .other_wide_video .button_play {
    position: absolute;
    left: 274px;
    top: 113px;
    width: 61px;
    height: 61px;
    border: none;
    cursor: pointer;
    background: no-repeat center / 100% 100% url(../assets/play_dark.svg?1=1);
}

.other_wide_video .text_content {
    color: #FFF;
    font-family: "BNPP Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 0.5px;
    position: absolute;
    left: 61px;
    bottom: 18px;

    p {
        width: 288px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.other_wide_video .title_content {
    position: absolute;
    top: 18px;
    left: 61px;
    color: #FFF;
    font-family: "BNPP Sans Condensed";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;

    .title {
        font-size: 40px;
        margin: 0 0 8px 0;
    }

    .sub_title {
        font-size: 30px;
        margin: 0;
    }
}

.iframe_content {
    width: 1253px;
    height: 647px;
    position: relative;
    opacity: 1;
    transition: opacity 0.3s ease;

    .close_iframe {
        position: absolute;
        top: 49px;
        right: 39px;
        width: 24px;
        height: 24px;
        border: none;
        cursor: pointer;
        background: no-repeat center / 100% 100% url(../assets/close_light.svg?1=1);
    }
}

.dark .iframe_content {
    width: 1253px;
    height: 647px;
    position: relative;
    opacity: 1;
    transition: opacity 0.3s ease;

    .close_iframe {
        position: absolute;
        top: 49px;
        right: 39px;
        width: 24px;
        height: 24px;
        border: none;
        cursor: pointer;
        background: no-repeat center / 100% 100% url(../assets/close_dark.svg?1=1);
    }
}

.video {
    transition: all 0.5s ease;
}

.video.active {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10;
}

.video.active .button_play {
    top: 50%;
    left: 50%
}
