.examples-block {
  --slide-paddings: 0;
  --item-margin: 0;
  --item-bg-color: #fff;
  --item-border: 1px solid #efefef;
  --item-border-radius: 0;
  --item-shadow: none;
  --item-text-color: #000;
  --item-effect-text-color: #000;
  --item-list-title-color: #53C2BB;
  --tags-mt: 0;
  --tags-text-color: #000;
  --tags-bg: #A7E8E5;
  --tags-shadow: none;
  --tags-highlited-text-color: #fff;
  --tags-highlited-bg: #3A8385;
  /*
  &__lastbutton {
  	margin: 0 auto;
  	display: flex;
  	width: fit-content;
  }
   */
}
.examples-block.tpl_turquoise {
  --item-border: 4px solid #46B7B2;
  --tags-mt: -4px;
  --tags-bg: #96DDD8;
}
.examples-block.tpl_turquoise .hover-awaits:hover,
.examples-block.tpl_turquoise .hover {
  --item-border: 4px solid #A7E8E5;
  --item-bg-color: #A7E8E5;
  --item-list-title-color: var(--item-text-color);
  --tags-text-color: #383C48;
  --tags-bg: #FFD900;
}
.examples-block.tpl_dark {
  --slide-paddings: 4px 8px 12px 8px;
  --item-border: 4px solid #597B7B;
  --item-border-radius: 20px;
  --item-shadow: 0 4px 8px 0 rgba(0,0,0,.25);
  --item-text-color: #212529;
  --tags-mt: -4px;
  --tags-text-color: #fff;
  --tags-bg: #3C8E8E;
}
.examples-block.tpl_dark .hover-awaits:hover,
.examples-block.tpl_dark .hover {
  --item-border: 4px solid #383C48;
  --item-bg-color: #383C48;
  --item-text-color: #fff;
  --item-effect-text-color: #EBD500;
  --item-list-title-color: #fff;
  --tags-text-color: #fff;
  --tags-bg: #FECD08;
}
.examples-block__slider {
  max-width: 820px;
  margin: 0 -10px 40px;
  padding: 0 20px;
  position: relative;
}
@media (min-width: 768px) {
  .examples-block__slider {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .examples-block__slider {
    max-width: unset;
  }
}
@media (min-width: 1500px) {
  .examples-block__slider {
    max-width: 1260px;
  }
}
.examples-block__slider > div {
  overflow: hidden;
}
.examples-block__slider .swiper-slide {
  padding: var(--slide-paddings);
  height: initial;
}
.examples-block__slider .swiper-slide.is-hidden {
  display: none !important;
}
.examples-block__slider .swiper-button-prev,
.examples-block__slider .swiper-button-next {
  width: 40px;
  height: 40px;
  margin: 24px 0;
  background: #c0edeb;
  opacity: 0.85;
  clip-path: polygon(60% 0, 100% 30%, 90% 90%, 40% 100%, 0 70%, 10% 10%);
  cursor: pointer;
  transition: all 200ms;
  z-index: 999;
  transform: translateY(-50%);
}
.examples-block__slider .swiper-button-prev:after,
.examples-block__slider .swiper-button-next:after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("img/swiper-arrow.svg") no-repeat center;
  background-size: 12px;
  pointer-events: none;
  transition: all 150ms;
}
.examples-block__slider .swiper-button-prev {
  left: 0;
}
.examples-block__slider .swiper-button-prev:after {
  transform: rotate(180deg);
}
.examples-block__slider .swiper-button-next {
  right: 0;
}
@media (min-width: 800px) {
  .examples-block__slider .swiper-button-prev {
    left: -35px;
  }
  .examples-block__slider .swiper-button-next {
    right: -35px;
  }
}
.examples-block__buttons {
  margin-bottom: 40px;
}
.examples-block__buttons-container {
  display: flex;
}
@media (max-width: 375px) {
  .examples-block__buttons-container {
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
}
.examples-block__buttons-list {
  display: flex;
  flex-wrap: wrap;
}
.examples-block__buttons-list-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}
.examples-block__buttons-item {
  margin: 0 20px 20px 20px;
  text-transform: uppercase;
  text-align: left;
  line-height: 34px;
  font-size: 26px;
  font-weight: 400;
  cursor: pointer;
}
.examples-block__buttons-item.active {
  color: #4CB7B2;
}
@media (min-width: 992px) {
  .examples-block__buttons-list {
    margin-left: 0;
    flex-wrap: wrap;
    overflow-x: unset;
  }
  .examples-block__buttons-list-title {
    line-height: 34px;
    font-size: 26px;
  }
  .examples-block__buttons-item {
    margin: 0 20px 20px 20px;
    line-height: 34px;
    font-size: 26px;
    white-space: initial;
  }
}
.examples-block__item {
  height: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--item-text-color);
  background: var(--item-bg-color);
  border: var(--item-border);
  border-radius: var(--item-border-radius);
  box-shadow: var(--item-shadow);
  transition: all 100ms;
}
.examples-block__item-title {
  margin-bottom: 15px;
  min-height: 55px;
  text-align: left;
  text-transform: uppercase;
  line-height: 1.4;
  font-size: 22px;
}
.examples-block__item-text {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 16px;
  text-align: left;
}
.examples-block__item-effect {
  margin-bottom: 10px;
  text-align: left;
  font-size: 26px;
  font-weight: 700;
  color: var(--item-effect-text-color);
}
.examples-block__item-list {
  margin-bottom: 12px;
  font-size: 16px;
}
.examples-block__item-list-title {
  min-width: 120px;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--item-list-title-color);
}
.examples-block__item-list-title.w-auto {
  min-width: unset;
}
.examples-block__item-list-text {
  line-height: 1.4;
}
@media (min-width: 576px) {
  .examples-block__item-list {
    margin-bottom: 24px;
    display: flex;
  }
  .examples-block__item-list-title {
    margin-right: 10px;
    text-align: right;
  }
}
.examples-block__tags {
  margin-top: var(--tags-mt);
  margin-bottom: 16px;
  padding: 12px 25px;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--tags-text-color);
  background: var(--tags-bg);
  box-shadow: var(--tags-shadow);
}
.examples-block__tags.is-highlighted {
  background: var(--tags-highlited-bg);
  color: var(--tags-highlited-text-color);
}
