*{
    margin: 0;
    padding: 0;
}
body {
    background-color: #2e8d86;
}
.container {
    width: 80%;
    margin: 80px auto;
}
.container h1{
    padding:60px 0;
    color:#ffff;
    font-size:44px;
    text-align: center;
}
.row-video{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.col-video {
    flex-basis: 50%;
    min-width: 250px;
}
.feature-img{
    width:83%;
    margin: auto;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
.small-img-row{
    display:flex;
    background: #efefef;
    margin:20px 0;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;;
    width: 85%;
}
.small-img{
    position: relative; 
}
.small-img img{
    width: 150px;
}
.small-img-row p{
    margin-left: 20px;
    color: #707070;
    line-height: 22px;
    font-size: 15px;

}
.play-btn{
    width: 60px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.small-img .play-btn {
    width:35px;
}

.video-player {
    width: 25%;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    display: none;
}
.video:focus {
    outline: none;
}
.close-btn {
    position: absolute;
    top:10px;
    right:10px;
    width:30px;
    cursor: pointer;

}

  .banner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 4rem 2rem;
      position: relative;
      overflow: hidden;
    }

    /* Glowing light effect */
    .banner::before {
      content: "";
      position: absolute;
      width: 200%;
      height: 200%;
      top: -50%;
      left: -50%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent 60%);
      animation: glow 5s infinite alternate;
      z-index: 0;
    }

    @keyframes glow {
      0% { transform: scale(1); opacity: 0.5; }
      100% { transform: scale(1.2); opacity: 0.8; }
    }

    .banner-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
          align-items: center;
      text-align: center;
    }

    .cross-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .banner h1 {
      font-size: 2.5rem;
      margin: 0.5rem 0;
      letter-spacing: 2px;
    }

    .banner p {
      font-size: 1.2rem;
      margin-top: 0.5rem;
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .banner h1 {
        font-size: 1.8rem;
      }

      .banner p {
        font-size: 1rem;
      }
    }

    iframe{
        display: block;  /* iframes are inline by default */
        height: 200vh;  /* Set height to 100% of the viewport height */
        width: 100vw;  /* Set width to 100% of the viewport width */
        border: none; /* Remove default border */
        /*background: white; */ /* Just for styling */
    }