.section__services_wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
}

#services-slider .glide__slide {
  padding: 20px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
  margin-bottom: auto;
}

.glide__arrow {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.glide__bullets {
  bottom: -20px;
}
.glide__bullet {
  background-color: #fff;
  border: #212d56 1px solid;
  width: 12px;
  height: 12px;
}
.glide__bullet:hover,
.glide__bullet:focus,
.glide__bullet.active {
  background-color: #212d56;
  border: #fff 1px solid;
}

.paragraph_wrapper {
  display: flex;
  flex-direction: column;
}

.block_image {
  height: 4rem;
}

.block_title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section__services_title {
  margin-bottom: 65px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 35rem;
  letter-spacing: 0.025em;
}

@media (min-width: 800px) {
  .bullets_wrapper {
    display: block;
  }
}

@media (max-width: 800px) {
  .bullets_wrapper {
    display: none;
  }
}

.arrows-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.arrow {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: solid 1px #212d56;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #212d56;
  transition: all 0.2s ease-in-out;
}
.arrow:hover {
  background-color: #212d56;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.arrow.right {
  transform: rotate(-90deg);
}
.arrow.left {
  transform: rotate(90deg);
}
.arrow.disabled {
  opacity: 0.5;
  cursor: default;
}
.arrow.disabled:hover {
  background-color: #fff;
  color: #212d56;
}
@media (min-width: 800px) {
  .arrows-wrapper {
    display: none;
  }
}
