.webinar-main {
  .webinar-banner {
    padding-top: 150px;
    background: linear-gradient(to bottom, #dff4ff 0%, #ffffff 100%);
    position: relative;

    .title {
      text-align: center;

      h1 {
        font-weight: 800;

        span {
          color: var(--primary-dark);
        }
      }
    }

    .person-info-wrapper,
    .person-details {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .person-info-wrapper {
      position: relative;

      .circle-1 {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        background: var(--primary-bg);
        border-radius: 50px;
        right: 110px;
        top: 80px;
      }

      .circle-2 {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        border: 2px solid var(--primary-color);
        border-radius: 50px;
        left: -100px;
        top: -100px;
      }

      .circle-3 {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        border: 2px solid var(--primary-color);
        border-radius: 50px;
        right: -20px;
        bottom: 100px;
      }

      .circle-4 {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        background: var(--primary-color);
        border-radius: 50px;
        left: 200px;
        top: 30px;
      }

      .circle-5 {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        border: 2px solid var(--primary-color);
        border-radius: 50px;
        right: 50px;
        bottom: 70px;
      }

      .circle-6 {
        position: absolute;
        content: "";
        height: 23px;
        width: 23px;
        background: var(--primary-bg);
        border-radius: 50px;
        right: -40px;
        top: -120px;
      }
    }

    .person-info {
      background: linear-gradient(
        to bottom,
        var(--primary-dark) 0%,
        var(--primary-bg) 100%
      );
      border-radius: 50px;
      padding: 10px 30px;
      width: 50%;
      position: absolute;
      left: 25%;
      transform: translateY(-50%);
      bottom: -50px;
      color: var(--white);
    }

    .left-image {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translatey(-50%);
      z-index: 1;
    }

    .right-image {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translatey(-50%);
      z-index: 1;
    }
  }

  .clock-timer-main {
    position: relative;

    .ai-uses {
      text-align: center;
      font-weight: 700;
      padding: 20px 20px;
    }

    .video {
      iframe {
        min-height: 400px;
        width: 100%;
        border-radius: 20px;
      }
    }

    #countdown {
      bottom: 40px;
      position: relative;
      text-align: center;

      ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        gap: 15px;
        font-size: 1.2rem;
        align-items: baseline;

        li {
          display: flex;
          flex-direction: column;
          align-items: center;

          .numbers {
            padding: 10px;
            box-shadow: 0px 0px 8px -2px var(--shadow);
            border-radius: 10px;
            background-color: var(--white);

            div {
              font-size: 2.5rem;
              font-weight: bold;
              padding: 10px;
              background: var(--primary-color);
              color: var(--white);
              border-radius: 10px;
              box-shadow: 0px 0px 9px -1px var(--shadow);
              width: 80px;
              text-align: center;
            }
          }

          .h3 {
            font-weight: 700;
            margin-top: 10px;
          }
        }

        span {
          font-size: 40px;
          font-weight: 800;
        }
      }

      p {
        margin-top: 20px;
      }
    }

    #message {
      display: none;
      font-size: 2rem;
      margin-top: 30px;
      color: #28a745;
    }

    .left-image {
      position: absolute;
      left: 0;
      top: 45%;
      z-index: 1;
    }

    .right-image {
      position: absolute;
      right: 0;
      top: 55%;
      z-index: 1;
    }

    .container {
      position: relative;

      .circle-1 {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        border: 2px solid var(--primary-color);
        border-radius: 50px;
        left: -100px;
        top: 0px;
      }

      .circle-2 {
        position: absolute;
        content: "";
        height: 23px;
        width: 23px;
        background-color: var(--primary-bg);
        border-radius: 50px;
        right: -40px;
        top: 0px;
      }
    }
  }

  .section-title {
    h2 {
      color: var(--secondary-color);
      text-transform: none;
    }
  }

  .ai-table {
    position: relative;
    padding-bottom: 120px;

    .table-wrapper {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--primary-color);
      position: relative;
      z-index: 2;
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    thead {
      background: linear-gradient(
        to bottom,
        var(--primary-dark) 0%,
        var(--primary-bg) 100%
      );
    }

    th {
      text-align: center;
      padding: 20px 24px;
      color: var(--white);
      margin: 0px;
    }

    tbody td {
      border: 1px solid var(--primary-color);
      padding: 20px 24px 20px 70px;
      position: relative;

      &::after {
        position: absolute;
        content: "";
        height: 35px;
        width: 35px;
        background-image: url("../images/webinar/ai-in-business/hand.png");
        left: 15px;
        top: 20px;
        background-size: contain;
        background-repeat: no-repeat;
      }
    }

    .cell-content {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .table-bg {
      position: absolute;
      bottom: 0;
      z-index: 1;
    }
  }

  .registration-main {
    background-image: url("../images/webinar/ai-in-business/strip-bg.webp");
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;

    h2 {
      text-align: left;
      color: var(--white);
    }

    .features {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 60px;
    }

    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;

      i {
        background-color: var(--white);
        height: 40px;
        width: 40px;
        border-radius: 50px;
        color: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 15px;
      }
    }

    .separator {
      width: 3px;
      height: 80px;
      background-color: var(--white);
      margin: 0px 30px;
    }

    .reserve-button {
      display: inline-block;
      background-color: var(--white);
      color: var(--secondary-color);
      text-decoration: none;
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
    }

    .robot-image {
      position: absolute;
      right: 0;
      bottom: -60px;
      z-index: 5;
    }
  }

  .step-process-tab-main {
    position: relative;

    .image-main-wrapper {
      .image-step {
        width: 70%;
        margin: 10px auto;
      }
    }

    .left-image {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translatey(-50%);
      z-index: 1;
    }

    .right-image {
      position: absolute;
      right: 0;
      top: 65%;
      z-index: 1;
    }
  }

  .webinar-bundle-section {
    position: relative;
    .bundle-items-list {
      width: 50%;
      display: flex;
      flex-direction: column;
      gap: 30px;
      position: relative;
      z-index: 6;
    }

    .bundle-item {
      display: flex;
      align-items: center;
      text-align: left;
      border-radius: 8px;
      padding-right: 20px;
      border: 1px solid var(--primary-color);
      width: 500px;
      background: var(--white);

      &:nth-child(2) {
        margin-left: 100px;
      }

      &:nth-child(3) {
        margin-left: 200px;
      }

      &:nth-child(4) {
        margin-left: 100px;
      }
    }

    .robot-image {
      position: relative;
      z-index: 2;
    }

    .item-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 6px;
      font-weight: 700;
      color: var(--white);
      margin-right: 15px;
      background: linear-gradient(
        120deg,
        var(--primary-dark) 0%,
        var(--primary-bg) 100%
      );
    }
    .left-image {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translatey(-50%);
      z-index: 1;
    }

    .right-image {
      position: absolute;
      right: 0;
      top: 65%;
      z-index: 1;
    }
  }
}
/* pop up */
#webinar-pupup {
  .modal-content {
    background-color: var(--primary-dark);
  }
  .careersectioncard {
    background: var(--white);
    box-shadow: none;
    border-radius: 20px;
    padding: 30px;
    color: var(--secondary-color);
    h3 {
      font-weight: 800;
      color: var(--secondary-color) !important;
    }

    .form-control {
      background: var(--white);
      border-radius: 63px;
      border: 1px solid var(--secondary-dark);
      padding: 10px 25px;
      &::placeholder {
        color: var(--secondary-light);
      }

      &:focus {
        box-shadow: none;
      }
    }

    .form-group {
      margin-bottom: 10px;
    }

    .iti__selected-flag {
      color: var(--secondary-light);
      background-color: #fff0;
    }

    .iti__flag-container {
      &:hover {
        .iti__selected-flag {
          background-color: #fff0;
        }
      }
    }

    #contact-form {
      .acceptterms {
        p {
          font-size: 14px;
          line-height: 19px;
        }
      }

      .btn-brand {
        margin-top: 0;
        border-radius: 50px;
        padding: 10px;
      }
    }
  }
}
@media (max-width: 1400px) {
  .webinar-main {
    .clock-timer-main {
      #countdown {
        ul {
          gap: 5px;
          li {
            .numbers {
              div {
                font-size: 1.5rem;
                width: 60px;
              }
            }
            .h3 {
              font-size: 20px;
            }
          }
        }
      }
    }
    .webinar-bundle-section {
      .bundle-item {
        width: 420px;
      }
    }
  }
}
@media (max-width: 1300px) {
  .webinar-main {
    .webinar-banner {
      .left-image {
        width: 40%;
      }
      .right-image {
        width: 40%;
      }
    }
  }
}
@media (max-width: 1200px) {
  .webinar-main {
    .webinar-banner {
      .person-info-wrapper {
        .circle-4 {
          left: 80px;
        }
        .circle-6 {
          right: 0px;
        }
      }
      .person-info {
        width: 60%;
        left: 20%;
      }
    }
    .registration-main {
      .separator {
        margin: 0px 10px;
      }
      .features {
        gap: 5px;
      }
    }
    .step-process-tab-main {
      .right-image {
        top: 45%;
      }
    }
    .webinar-bundle-section {
      .bundle-item {
        width: 420px;
        &:nth-child(2) {
          margin-left: 60px;
        }

        &:nth-child(3) {
          margin-left: 120px;
        }

        &:nth-child(4) {
          margin-left: 60px;
        }
      }
      .left-image {
        width: 50%;
      }
    }
  }
}
@media (max-width: 991px) {
  .webinar-main {
    .webinar-banner {
      .person-info-wrapper {
        .circle-1,
        .circle-2,
        .circle-3,
        .circle-4,
        .circle-5,
        .circle-6 {
          display: none;
        }
        img {
          margin: 0 auto;
        }
      }
      .title {
        .circle-1 {
          position: absolute;
          content: "";
          height: 20px;
          width: 20px;
          background: var(--primary-bg);
          border-radius: 50px;
          right: 110px;
          top: 80px;
        }
        .circle-2 {
          position: absolute;
          content: "";
          height: 20px;
          width: 20px;
          border: 2px solid var(--primary-color);
          border-radius: 50px;
          left: 110px;
          top: 100px;
        }
        .circle-3 {
          position: absolute;
          content: "";
          height: 10px;
          width: 10px;
          background: var(--primary-bg);
          border-radius: 50px;
          right: 140px;
          top: 40%;
        }
        .circle-4 {
          position: absolute;
          content: "";
          height: 20px;
          width: 20px;
          border: 2px solid var(--primary-color);
          border-radius: 50px;
          right: 60px;
          top: 65%;
        }
      }
      .person-info {
        width: 60%;
        left: 20%;
      }
      .right-image {
        display: none;
      }
    }
    .clock-timer-main {
      #countdown {
        bottom: 33%;
        position: absolute;
        left: 50%;
        transform: translatex(-50%);
      }
      .video {
        margin-bottom: 130px;
      }
    }
    .registration-main {
      .separator {
        display: none;
      }
      .features {
        flex-direction: column;
        align-items: start;
        margin-bottom: 20px;
      }
      .feature-item {
        gap: 10px;
        flex-direction: row;
        i {
          height: 30px;
          width: 30px;
        }
      }
      .robot-image {
        bottom: 0;
      }
    }
    .step-process-tab-main {
      .left-image {
        display: none;
      }
      .right-image {
        top: 23%;
        width: 25%;
      }
    }
    .webinar-bundle-section {
      .bundle-item {
        width: 400px;
        &:nth-child(2) {
          margin-left: 20px;
        }

        &:nth-child(3) {
          margin-left: 30px;
        }

        &:nth-child(4) {
          margin-left: 20px;
        }
      }
      .right-image {
        display: none;
      }
    }
  }
}
@media (max-width: 768px) {
  .webinar-main {
    .clock-timer-main {
      .video {
        img {
          border-radius: 10px;
        }
      }
      #countdown {
        bottom: 41%;
        p {
          margin-top: 5px;
        }
        .video {
          margin-bottom: 135px;
        }
      }
      .left-image,
      .right-image {
        display: none;
      }
      .container {
        .circle-1,
        .circle-2 {
          display: none;
        }
      }
    }
    .ai-table {
      padding-bottom: 30px;
      .table-bg {
        display: none;
      }
      th {
        padding: 10px 14px;
      }
      tbody td {
        padding: 10px 10px 10px 35px;
        &::after {
          height: 20px;
          width: 20px;
          top: 10px;
          left: 10px;
        }
      }
    }
    .webinar-bundle-section {
      .robot-image {
        width: 80%;
        margin: 0 auto;
      }
      .bundle-items-list {
        width: 100%;
        gap: 20px;
      }
      .bundle-item {
        margin-left: 0px !important;
        width: 100%;
      }
      .left-image {
        width: 80%;
        top: 30%;
      }
    }
    /* iframe video for mobile */
    .video-overlay iframe {
      height: 75% !important;
    }
  }
}

@media (max-width: 500px) {
  .webinar-main {
    .webinar-banner {
      .person-info {
        padding: 10px 20px;
      }
      .title {
        .circle-3 {
          right: 90px;
        }
        .circle-4 {
          right: 0px;
          height: 15px;
          width: 15px;
        }
      }
    }
    .clock-timer-main {
      #countdown {
        bottom: 44%;
        ul {
          span {
            font-size: 20px;
          }
          li {
            .numbers {
              div {
                font-size: 1rem;
                width: 50px;
              }
            }
          }
        }
      }
    }
    .registration-main {
      .feature-item {
        gap: 10px;
        i {
          height: 20px;
          width: 20px;
          margin: 0px;
          &::before {
            font-size: 12px;
          }
        }
      }
      .robot-image {
        right: 50px;
      }
      .reserve-button {
        padding: 7px 15px;
      }
    }
  }
}
@media (max-width: 450px) {
  .webinar-main {
    .clock-timer-main {
      #countdown {
        bottom: 49%;
      }
    }
  }
}
@media (max-width: 400px) {
  .webinar-main {
    .clock-timer-main {
      .ai-uses {
        padding: 0px;
      }
      .video {
        margin-bottom: 110px;
      }
      #countdown {
        top: 35%;
        ul {
          span {
            font-size: 10px;
          }
          li {
            .h3 {
              font-size: 10px;
            }
            .numbers {
              padding: 5px;
              div {
                font-size: 0.8rem;
                width: 40px;
              }
            }
          }
        }
      }
    }
    .registration-main {
      .feature-item {
        h6 {
          font-size: 13px;
        }
      }
      .robot-image {
        right: 30px;
      }
      .reserve-button {
        padding: 7px 15px;
      }
    }
  }
}
@media (max-width: 370px) {
  .webinar-main {
    .clock-timer-main {
      #countdown {
        top: 31%;
      }
    }
  }
}
