.oim_bloc_note {
  position: relative;
  display: flex;
  gap: 50px;
  min-height: 300px;
}

.oim_bloc_note::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -150px;
  width: 357px;
  height: 357px;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.7;
  background: linear-gradient(62deg, #03fbcd 16.65%, #03ccf8 82.35%);
  filter: blur(64px);
}

.oim_bloc_note_single {
  display: flex;
  background-color: white;
  box-shadow: 0px 0px 25px 0px #0000002b;
  border-radius: 20px;
  width: calc(50% - 25px);
  height: 220px;
  overflow: hidden;
}

.oim_bloc_note_single_left {
  width: 220px;
}

.oim_bloc_note_single_left img {
  width: 100%;
  height: 220px;
  padding: 30px;
  object-fit: contain;
}

.oim_bloc_note_single_right {
  width: calc(100% - 220px);
  display: flex;
  font-family: "Poppins";
  font-size: 5em;
  line-height: 48px;
  font-weight: 800;
  justify-content: center;
  align-items: center;
  background: #e8fbff;
}

.oim_bloc_note_single_right div {
  background: #03fbcd;
  background: -webkit-linear-gradient(to top, #03fbcd 0%, #03ccf8 100%);
  background: -moz-linear-gradient(to top, #03fbcd 0%, #03ccf8 100%);
  background: linear-gradient(to top, #03fbcd 0%, #03ccf8 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.oim_bloc_note_single_right span {
  font-weight: 300;
}

@media screen and (max-width: 1300px) {
  .oim_bloc_note_single_right {
    font-size: 4em;
  }
}

@media screen and (max-width: 992px) {
  .oim_bloc_note {
    flex-wrap: wrap;
    max-width: 500px;
    margin: auto;
  }

  .oim_bloc_note_single {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .oim_bloc_note_single_left {
    width: 150px;
  }

  .oim_bloc_note_single_right {
    width: calc(100% - 150px);
  }

  .oim_bloc_note_single_right {
    font-size: 2.5em;
  }

  .oim_bloc_note_single_left img {
    height: 150px;
  }

  .oim_bloc_note_single {
    height: 150px;
  }

  .oim_bloc_note {
    gap: 25px;
  }
}
