/* /motorola-razr-50 */
.mrazr {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 2rem;
  margin-block-end: 2rem;
  align-items: center;
}

.mrazr img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1180px) {
  .mrazr {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .mrazr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.mrazr .drops {
  display: flex;
  flex-wrap: wrap;
  width: 280px;
  height: 280px;
  align-items: center;
  z-index: 1;
}

@media (max-width: 1200px) {
  .mrazr .drops {
    grid-template-columns: auto auto;
    max-width: max-content;
  }
}

.mrazr .dropFull {
  flex-basis: 100%;
}

.mrazr .drop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 150px;
  height: 150px;
  font-size: 20px;
  border: 3px solid #fff;
}

@media (max-width: 560px) {
  .mrazr .drop {
    transform: scale(0.8);
    transform-origin: top;
  }
}

.mrazr .drop--green {
  margin: 0 auto 60px;
  border-radius: 50% 0 50% 50%;
  z-index: -1;
}

.mrazr .drop--violet {
  top: -10px;
  right: -30px;
  margin: -70px 0 0 -20px;
  border-radius: 0 50% 50% 50%;
  z-index: 2;
}

@media (max-width: 560px) {
  .mrazr .drop--violet {
    top: -40px;
  }
}

.mrazr .drop--orange {
  top: -30px;
  right: -10px;
  margin: -80px 0 0 0;
  border-radius: 50% 50% 0 50%;
}

@media (max-width: 560px) {
  .mrazr .drop--orange {
    top: -50px;
    right: 0;
  }
}

.mrazr__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

@media (min-width: 560px) and (max-width: 1180px) {
  .mrazr__picture {
    grid-column: span 2;
    grid-row: 0.5;
    max-height: 300px;
    overflow: hidden;
    display: none;
  }
}

@media (max-width: 560px) {
  .mrazr__picture {
    display: block;
    order: -1;
  }
}
