/* Title-Banner Section */
#title-banner {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    position: relative;
    margin-bottom: 2rem;
  }
  
  #background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute; /* fixed;*/
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  
  #title-banner:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #title-banner .container {
    position: relative;
    padding-top: 74px;
    text-align: center;
  }
  
  #title-banner h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
    font-family: "Poppins", sans-serif;
  }
  
  #title-banner h2 {
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0 0 0;
    font-size: 24px;
  }
  
  #title-banner .icon-box {
    padding: 30px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    text-align: center;
  }
  
  #title-banner .icon-box i {
    font-size: 32px;
    line-height: 1;
    color: #ffc451;
  }
  
  #title-banner .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 20px;
    line-height: 26px;
  }
  
  #title-banner .icon-box p {
    color: rgb(186, 186, 186);
  }
  
  #title-banner .icon-box h3 a {
    color: #fff;
    transition: ease-in-out 0.3s;
  }
  
  #title-banner .icon-box h3 a:hover {
    color: #ffc451;
  }
  
  #title-banner .icon-box:hover {
    border-color: #ffc451;
  }