@media ((min-width: 1600px)) {
  .webinar-picture {
    p {
      font-size: 1.5rem;
    }

    img {
      width: 100px;
      border-radius: 10px;
    }
  }
}

@media (max-width: 991px) {
  .webinar-picture {
    p {
      font-size: 1rem;
    }

  }


}

@media (max-width: 786px) {
  .webinar-picture {
    p {
      font-size: 0.9rem;
    }

    img {
      width: 60px;
    }

  }

}




@media (max-width: 576px) {


  .webinar-picture {
    background-image: url(../../images/webinar-picture-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 200px;

    p {
      font-size: 0.8rem;
    }

    img {
      width: 50px;
      border-radius: 10px;
    }
  }
}



@media (max-width: 467px) {

  .webinar-picture {
    background-image: url(../../images/webinar-picture-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;

    img {
      width: 40px;
      border-radius: 10px;
    }

    p {
      font-size: 0.7rem;
    }
  }

  .webinar-landing-page .container {
    width: 95%;
  }


}

@media (max-width: 360px) {
  .webinar-picture {
    background-image: url(../../images/webinar-picture-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;

    img {
      width: 30px;
      border-radius: 10px;
    }

    p {
      font-size: 0.6rem;
    }
  }
}