.learn-more-buttons-wrap {
  position: fixed;
  bottom: 130px;
  right: calc(3% - 2.25px);
  display: block;
  height: 150px;
  width: 150px;
  margin-bottom: 25px;
  margin-right: 25px;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 999991 !important;
  transform-origin: 50% 50% 0;
}

/* Toggle button */
.show-learn-more-buttons {
  display: flex !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  margin-top: 70px;
  margin-left: 70px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s;
  z-index: 1000;
}

.show-learn-more-buttons img {
  width: 45px;
  height: 45px;
  transition: 0.5s;
}

.learn-more-buttons-wrap.active .show-learn-more-buttons {
  transform: rotate(360deg);
  box-shadow:
    0 6px 8px rgba(0, 0, 0, 0.15),
    0 0 0 2px #333,
    0 0 0 8px #fff;
}

/* Buttons container */
.learn-more-buttons {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 0;
  height: 0;
}

/* Individual messenger buttons */
.learn-more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 60px;
  height: 60px;
  list-style: none;
  cursor: pointer;
  opacity: 0;
  transition: 0.4s ease-out;
}

.learn-more-button:nth-child(1) {
  transform: translate(-30px, -25px);
  transition-delay: 0s;
}

.learn-more-button:nth-child(2) {
  transform: translate(-30px, -25px);
  transition-delay: 0.05s;
}

.learn-more-button:nth-child(3) {
  transform: translate(-30px, -25px);
  transition-delay: 0.1s;
}

/* Active state - show buttons (upward) */
.learn-more-buttons-wrap.active .learn-more-button:nth-child(1) {
  opacity: 1;
  transform: translate(-30px, -115px);
}

.learn-more-buttons-wrap.active .learn-more-button:nth-child(2) {
  opacity: 1;
  transform: translate(-30px, -185px);
}

.learn-more-buttons-wrap.active .learn-more-button:nth-child(3) {
  opacity: 1;
  transform: translate(-30px, -255px);
}

/* Button inner styling */
.learn-more-button svg {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.3s;
}

.learn-more-button:nth-child(3) svg {
  width: 50px;
  height: 50px;
}

/* Hover effects */
.learn-more-button:hover svg {
  transform: scale(1.1);
}

/* section slider */

.section-gallery-slider {
  padding-top: 40px;
  padding-bottom: 70px;
}

.section-gallery-slider__slide img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16/9 !important;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.section-gallery-slider .advantages__title {
  margin-bottom: 40px;
}

.section-gallery-slider__nav {
  max-width: 100px;
  margin: 15px auto 0;
}

@media screen and (max-width: 767px) {
  .section-gallery-slider .advantages__title {
    margin-bottom: 15px;
  }

  .section-gallery-slider__nav {
    max-width: 60px;
  }
}
