.slideshow-block {
  width: 100%;
  max-width: calc(100% - 414px);
}
@media (max-width: 768px) {
  .slideshow-block {
    max-width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .slideshow-block {
    max-width: calc(100% - 330px);
  }
}
@media (min-width: 1281px) and (max-width: 1439px) {
  .slideshow-block {
    max-width: calc(100% - 394px);
  }
}
.slideshow-block .glide {
  position: relative;
  height: 100%;
}
.slideshow-block .glide .glide__track {
  height: 100%;
}
.slideshow-block .glide .glide__track .glide__slides {
  height: 100%;
}
.slideshow-block .glide .glide__track .glide__slides .glide__slide {
  border-radius: unset;
}
.slideshow-block .glide .glide__track .glide__slides .glide__slide img {
  border-radius: 20px;
  object-fit: cover;
  object-position: left top;
  height: 100%;
}
@media (max-width: 768px) {
  .slideshow-block .glide .glide__track .glide__slides .glide__slide img {
    width: 100%;
  }
}
.slideshow-block .glide .glide__bullets {
  display: none;
}
.slideshow-block .glide .glide__bullets button {
  width: 29px;
  height: 3px;
  background: rgba(87, 183, 40, 0.16);
  border-radius: 24px;
}
.slideshow-block .glide .glide__bullets button.glide__bullet--active {
  background: var(--main_green);
}
@media (max-width: 768px) {
  .slideshow-block .glide .glide__bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    gap: 7px;
  }
}
.slideshow-block .glide .controls button {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 100%;
  border: 1px solid var(--main_green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slideshow-block .glide .controls button:hover {
  background: var(--main_green);
}
.slideshow-block .glide .controls button:hover svg {
  stroke: #fff;
  fill: #fff;
}
.slideshow-block .glide .controls button:first-child {
  margin-left: -25px;
  left: 0;
}
.slideshow-block .glide .controls button:first-child svg {
  margin-left: -2px;
  transform: rotate(-180deg);
}
.slideshow-block .glide .controls button:last-child {
  margin-right: -25px;
  right: 0;
}
.slideshow-block .glide .controls button:last-child svg {
  margin-right: -2px;
}
.slideshow-block .glide .controls button svg {
  width: 5.7px;
  height: 10px;
}
@media (max-width: 768px) {
  .slideshow-block .glide .controls button {
    width: 37px;
    height: 37px;
  }
  .slideshow-block .glide .controls button:first-child {
    margin-left: -8px;
  }
  .slideshow-block .glide .controls button:last-child {
    margin-right: -8px;
  }
}
