/*** new banner start ****/
  .ImmigrationCard_bg {
    width: 100%;
    height: 125px;
    border-radius: 10px;
    overflow: hidden;   
  }

  .ImmigrationCard_bg > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ImmigrationCard {
    width: 100%;
    height: 125px;
    border-radius: 10px;
    background-color: var(--color-brand-100); /*#772228;*/
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    opacity: .875;
    margin-top: -125px;
    

  }

  .ImmigrationCard_content {
    width: 65%;
    display: flex;
    flex-direction: row;
    justify-content: center;

  }
  .ImmigrationCard_text{
    margin-left: 5%;
  }

  .ImmigrationCard_button {
    width: 35%;
    height: 125px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .ImmigrationCard_glow {
    width: 200px;
    height: 200px;
    object-fit: cover;
    background-image: url("https://www.studypug.com/learning/wp-content/uploads/sites/3/Ellipse1.png");
    background-size:200px 200px;
    animation: button_glow 2.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ImmigrationCard_glow:hover{
    animation: button_glow .5s ease-in-out infinite;
    cursor: pointer;
  }
  .ImmigrationCard_button_text:hover{
    animation: button_text .5s ease-in-out infinite;
  }
  @keyframes button_glow {
    from {
      background-image: url("https://www.studypug.com/learning/wp-content/uploads/sites/3/Ellipse1.png")
    }

    to {
      background-image: url("https://www.studypug.com/learning/wp-content/uploads/sites/3/Ellipse3.png")
    }
  }

  .ImmigrationCard_button_text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 300;
    text-decoration: underline;
    text-underline-offset: 5px;
    color: #FCDDBC;
    animation: button_text 2.5s ease-in-out infinite;
  }

  @keyframes button_text {
    from {
      font-weight: 300;
    }

    to {
      font-weight: 700;
    }
  }

  .Logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    height:20px;
    font-size:12px
  }
  .Logo p {
    margin:0px;
    height: 20px;
  }
  .Logo_img{
    display: flex; flex-direction:row; align-items:center;
  }
  .Logo  img {
    width: 16px;
    height: 16px;
    object-fit:initial;
  }

  .ImmigrationCard_info {
    width: 500px;
    font-size: 18px;
    font-weight: 700;
    margin: 4px 0 4px 0
  }


  @media screen and (max-width:768px) {
    .ImmigrationCard {
      flex-direction: column;
      height: 175px;
      margin-top: -175px;
      justify-content: space-around;
    }

    .ImmigrationCard_bg {
      height: 175px
    }

    .ImmigrationCard_bg > img {
      object-fit: cover;
      height: 100%
    }

    .ImmigrationCard_text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items:center;
      margin-left: 0%;
    }

    .ImmigrationCard_info {
      width: 400px;
    }

    .ImmigrationCard_info {
      width: 95%;
      font-size: 16px;
      font-weight: 700;
      text-align: center;
    }

    .ImmigrationCard_button_text {
      font-size: 24px;
      text-decoration: underline;
    }

    .ImmigrationCard_button {
      width: 100%;
      height: 50px;
      margin-top: -5%;
    }

  }
    @media screen and (max-width:400px) {
      .Logo img {
        width: 16px;
      }

      .Logo {
        font-size: 12px;
      }

      .ImmigrationCard_info {
        font-size: 14px;
      }

      .ImmigrationCard_button_text {
        font-size: 20px;
      }
    }



/**new banner end **/