.advantage {
  padding: 140px 0;
  height: 100%;
  background: linear-gradient(to top right, #D7DBE0, #D7DBE0 60%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.advantage__ellipse {
  position: absolute;
  top: -150px;
  left: -150px;
  z-index: 0;
  width: 400px;
}

.advantage__ellipse-img {
  width: 100%;
}

.zavitushka {
  position: absolute;
  z-index: 0;
  right: 5%;
  bottom: 0;
  animation: floating 10s ease-in-out infinite;
  will-change: transform;
}

.zavitushka-img {
  display: block;
  max-width: 100%;
  height: auto;
}

@keyframes floating {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(5px, -10px) rotate(3deg);
  }
  50% {
    transform: translate(8px, -5px) rotate(-2deg);
  }
  75% {
    transform: translate(-6px, -12px) rotate(4deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.advantage__container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  z-index: 1;
}

.advantage__items {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.advantage__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.4);
}

.advantage__icon {
  padding-right: 25px;
}

.advantage__title {
  font-family: 'Montserrat-Bold';
  font-size: 20px;
  color: #1D1C1C;
  margin-bottom: 12px;
}

.advantage__text {
  font-size: 13px;
  line-height: 20px;
  color: #747880;
}

@media (max-width: 1200px) {
  .advantage {
    padding: 100px 0;
  }
}

@media (max-width:768px) {
  .advantage__icon {
    padding-right: 0;
  }
  .advantage__item {
    align-items: start;
    flex-direction: column;
  }

  .advantage__ellipse {
    width: 180px;
    height: 180px;
  }
}

@media (max-width:720px) {
  .advantage {
    padding: 100px 0 64px 0;
  }
  .advantage__items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width:520px) {
  .advantage__ellipse {
    top: -70px;
    left: -50px;
  }
}