.service-boxes-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 991px) {
  .service-boxes-wrapper {
    height: calc(100% - 90px);
    background: transparent;
  }
}

.service-boxes {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .service-boxes {
    height: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.service-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 300px;
  padding: 10px clamp(20px, 5vw, 100px);
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .service-box {
    width: 100%;
    min-height: 0;
    justify-content: center;
  }
}
.service-box__main {
  flex: 1;
  max-width: 245px;
}
@media (max-width: 991px) {
  .service-box__main {
    max-width: none;
  }
}
.service-box__main .ff-button {
  margin-bottom: 20px;
}
.service-box__main select {
  margin-bottom: 20px;
  width: 100%;
  height: 40px;
  font-size: 0.75em;
  background: #F8F8F8;
  color: #7E797E;
  border: 0;
  border-radius: 5px;
  padding: 11px 15px;
}
@media (max-width: 991px) {
  .service-box__main select {
    display: none;
  }
}
.service-box__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.service-box__title h2 {
  font-size: 1.25em;
}
@media (max-width: 991px) {
  .service-box__title h2 {
    color: #fff;
  }
}
@media (max-width: 991px) {
  .service-box__title > img,
  .service-box__title > svg {
    width: 40px;
    height: 40px;
    filter: brightness(0.1) invert(1);
  }
}
.service-box__help {
  font-size: 0.625em;
  text-align: center;
  line-height: 1.1;
  display: block;
  color: #000;
}
.service-box__help:hover {
  color: #B20009;
}
@media (max-width: 991px) {
  .service-box__help {
    display: none;
  }
}
.service-box__additional {
  text-align: center;
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .service-box__additional {
    display: none;
  }
}
.service-box__additional h6 {
  font-size: 0.625em;
}
.service-box__additional .highlight {
  white-space: nowrap;
  font-size: 2.5em;
  font-weight: 700;
  text-transform: uppercase;
}
.service-box__additional p {
  font-size: 0.875em;
  color: #B20009;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 992px) {
  .service-box.active {
    border-radius: 200px;
    background: rgba(255, 255, 255, 0.55);
  }
  .service-box.active .service-box__additional {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: clamp(15px, 3vw, 60px);
  }
}