#webinar_header_section {
  background-size: cover;
  background-position: center;
  box-shadow: none;
  
  .webinar_element_inner_wrap {
    max-width: 690px;
    
    &* {
      text-rendering: optimizelegibility;
    }
    
    h1 {
      color: #fff;
    }
    
    p {
      color: #fff;
    }
    
    p.webinar_header_tag {
      font-weight: bold;
      color: #f05c30;
    }
    
    ul {
      list-style-type: none;
      margin: 1rem 0;
      padding: 0;
      display: flex;
      margin-bottom: 50px !important;
      gap: 20px;
      
      @media (max-width: 767px) {
        flex-direction: column;
      }
      
      li {
        list-style-type: none;
        background: none !important;
        padding: 0 !important;
        margin: 0 !important;
        color: #fff;
        font-family: 'Open Sans',sans-serif;
        font-weight: bold;
        line-height: 22px;
        text-rendering: optimizelegibility;
        
        img {
          height: 22px;
          width: auto;
          object-fit: contain;
          margin-right: 5px;
        }
        
      }
    }
    
    a {
      background: linear-gradient(90deg, #F15C31 0%, #F9A223 100%);
      font-size: 16px;
      color: #fff;
      line-height: 120%;
      display: block;
      width: fit-content;
      letter-spacing: 0%;
      border-radius: 0 !important;
      padding: 15px 20px;
      font-weight: bold;
      transition: none;
      box-shadow: none;
      &:hover {
        background: #ee5c39 !important;
        box-shadow: none !important;
      }
    }
    }
  }
}