/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 28 2025 | 10:08:15 */
.blue-banner {
    display: flex;
    align-items: center;
    gap: 32px;

    padding: 34px 40px;

    background: rgba(20, 34, 60, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 24px;
    border: 1px solid rgba(110, 160, 255, 0.28);
    box-shadow: 0 0 45px rgba(70, 120, 255, 0.12);

    color: #e8f0ff;
    position: relative;
    overflow: hidden;
  }

  /* голубой рассеянный свет */
  .blue-banner::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: 260px;
    height: 260px;
    background: rgba(80, 160, 255, 0.22);
    filter: blur(80px);
    border-radius: 50%;
  }

  .blue-logo {
    width: 130px;
    height: 130px;
    border-radius: 18px;
    flex-shrink: 0;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(110, 150, 255, 0.28);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    z-index: 2;
  }

  .blue-logo img {
    width: 75%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(90,150,255,0.4));
  }

  .blue-info {
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .blue-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #aecbff;
    font-weight: 600;
  }

  .blue-title {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    color: #dce8ff;
  }

  .blue-title span {
    color: #74a9ff;
    font-weight: 900;
  }

  .blue-sub {
    font-size: 1rem;
    color: #c2d6ff;
    max-width: 55ch;
  }

  .blue-btn {
    display: inline-block;
    padding: 13px 34px;
    margin-top: 6px;

    border-radius: 14px;
    background: #558dff;
    color: #0a1120;

    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;

    box-shadow: 0 10px 25px rgba(85,141,255,0.32);
    transition: 0.25s ease;
    width: fit-content;
  }

  .blue-btn:hover {
    background: #417cff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(70,130,255,0.4);
  }

  @media (max-width: 850px) {
    .blue-banner {
      flex-direction: column;
      text-align: center;
      padding: 30px;
    }

    .blue-logo {
      margin-bottom: 16px;
    }

    .blue-btn {
      width: 100%;
      max-width: 330px;
      align-self: center;
    }
  }