.banner-category {
    width: 100%;
    /* max-width: 1366px; */
    height: 440px;
    background-color: black;
    margin: 0 auto;
  }
  .banner-category .content__banner {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner-category .content__banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .banner-category .content__banner iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .banner-category .content__banner__text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  .banner-category .content__banner__text h2 {
    font-size: 44px;
    margin: 0;
    color: #fff;
    text-align: center;
    /*font-family: 'Alright Sans Black';*/
  }
  .banner-category .content__banner__text p {
    font-size: 16px;
    text-align: center;
    width: 60%;
    color: #fff;
    /*font-family: 'Alright Sans Medium';*/
  }
  .banner-category .content__banner__text a {
    width: 120px;
    text-decoration: none;
    font-size: 13.5px;
    display: inline-block;
    padding: 10px 10px 6px 10px;
    background-color: #0086bf;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    margin-top: 10px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 15px 0px rgb(255, 255, 255);
    /*font-family: 'Alright Sans Medium';*/
  }
@media (max-width: 576px) {
  .banner-category .content__banner__text h2 {
    font-size: 30px;
  }
}