.block {
  padding-block: 50px;
}

.section_first {
  padding-top: 80px;
}

.section__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.title {
  color: var(--accent-bg);
  font-size: 30px;
  line-height: 100%;
  font-weight: 900;
  font-family: var(--semibold);
}

.title_min {
  color: var(--dark-color);
  font-size: 18px;
  line-height: 100%;
  font-family: var(--semibold);
}

.section__top-title:not(:last-child) {
  margin-bottom: 15px;
}

.section__top-column_right {
  display: none;
}
.central-box-btn{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

.card {
  position: relative;
  overflow: hidden;
  padding: 15px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: var(--card-bg);
  box-shadow: 0px 4px 14px 1px rgba(220, 220, 220, 0.25);
}


.box-logo {
  position: relative;
  z-index: 14;
}



.box-logo-link {
  position: absolute;
  inset: 0;
  z-index: 20;
  cursor: pointer;
}


.text {
  color: var(--light-color);
}
.text b, .text strong {
	font-family: var(--semibold)
}


.text:not(:last-child) {
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  font-size: 16px;
  font-family: var(--medium);
  text-align: center;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.btn span {
  font-size: 16px;
  font-family: var(--medium);
}

.btn_accent {
  color: var(--card-bg);
  background-color: var(--accent-bg);
}

.btn_dark {
  color: var(--card-bg);
  background-color: var(--main-color);
}

.btn_light.btn {
  color: var(--dark-color);
  font-family: var(--medium);
  background-color: var(--card-bg);
  box-shadow: 0px 4px 14px 1px rgba(220, 220, 220, 0.25);
}

.swiper__box-btns {
  position: static;
  display: flex;
  justify-content: end;
  gap: 15px;
  min-height: 40px;
  margin-bottom: 20px;
}

.swiper__btn {
  cursor: pointer;
  top: auto;
  left: auto;
  bottom: auto;
  right: auto;
  padding: 0;
  margin: 0;
  position: relative;
  color: transparent;
  background-color: var(--card-bg);
  box-shadow: 0px 4px 14px 1px rgba(220, 220, 220, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  z-index: 11;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.swiper__btn:active {
  scale: 0.95;
}

.swiper__btn img {}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  /* отступ от слайдера */
  position: relative;
  /* чтобы не прыгала */
}

/* Буллеты по умолчанию */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  border-radius: 50%;
  border: 1px solid var(--light-color);
  background-color: transparent;
  transition: background-color 0.4s ease;
  box-sizing: border-box;
}

/* Активный буллет */
.swiper-pagination-bullet-active {
  background-color: var(--light-color);
  border: 1px solid var(--light-color);
}

.soc__links {
  display: flex;
  gap: 10px;
}

.soc__link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  background-color: var(--accent-bg);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
}

@media (hover: hover) {
  .btn_accent:hover {
    background-color: var(--accent-bg-hover);
  }

  .btn_light:hover {
    color: var(--card-bg);
    background-color: var(--main-color);
    box-shadow: 0px 4px 14px 1px rgba(87, 86, 86, 0.25);
  }
  .btn_dark:hover{
    background-color: var(--accent-bg);
  }

  .soc__link:hover {
    background-color: var(--accent-bg-hover);
  }

  .swiper__btn:hover {
    background-color: #f9f9f9;
  }
}

@media (max-width: 490px) {}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .central-box-btn{
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .section__top-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .section__top-column_right {
    display: flex;
    justify-content: end;
    align-items: end;
  }

  .swiper__box-btns {
    position: static;
    display: flex;
    justify-content: end;
    gap: 15px;
    min-height: 40px;
    margin-bottom: 20px;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (min-width: 1200px) {

  .block {
    padding-block: 75px;
  }

  .cards {
    gap: 25px;
  }

  .cards:not(:last-child) {
    margin-bottom: 50px;
  }

  .swiper__box-btns {
    position: static;
    display: flex;
    justify-content: end;
    gap: 15px;
    min-height: 40px;
    margin-bottom: 20px;
  }

  .section__top {
    gap: 10px;
  }

  .swiper-pagination {
    margin-top: 50px;
  }

  .title {
    font-size: 50px;
  }

  .title_min {
    font-size: 20px;
  }

  .card {
    padding: 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
}

@media (min-width: 1200px) {
  .section__top {
    margin-bottom: 40px;
  }
  .section_first{
    padding-top: 120px;
  }
}

@media (min-width: 1380px) {
  .text,
  .btn,
  .btn>span,
  .text b,
  .text strong,
  .text em,
  .text i
  {
    font-size: 18px;
  }
}

/* анимация */

.element-animation {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity .6s ease, transform .6s ease;
}

.element-show {
  opacity: 1;
  transform: translateY(0);
}