@charset "UTF-8";
/**
 * ItcSlider
 * @version 1.0.1
 * @author https://github.com/itchief
 * @copyright Alexander Maltsev 2020 - 2023
 * @license MIT (https://github.com/itchief/ui-components/blob/master/LICENSE)
 * @tutorial https://itchief.ru/javascript/slider
 */
@font-face {
  font-family: "MySiteFont";
  src: url("../fonts/roboto-flex.woff2") format("woff2");
  font-weight: 100 1000;
  font-stretch: 25% 151%;
  font-style: normal;
  font-display: swap;
  font-weight: 400;
}
:root {
  --site-font: 'MySiteFont', sans-serif;
  --size-base: 1.6rem;
  --indent: 20px;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-bold: 700;
  --fw-black: 900;
  --line-h: 1.42857143;
  --bg: rgba(46, 139, 87, 0.1);
  --main: #009c48;
  --main-hover: #71bf43;
  --news-title-color: #0b9444;
  --color1: #58585b;
  --color2: #f5821f;
  --color3: #fdb813;
  --color4: #005825;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid var(--main);
  overflow: visible;
  opacity: 1;
}

h1 {
  font-family: var(--site-font);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
}

p {
  font-family: var(--site-font);
  font-weight: var(--fw-light);
  text-indent: var(--indent);
  line-height: var(--line-h);
  margin: 0;
}

a {
  transition: 0.5s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--site-font);
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: 700;
  color: var(--main);
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.3rem;
}

h6 {
  font-size: 1.1rem;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.button-gafk, .btn-gafk {
  display: inline-flex;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428;
  border-radius: 4px;
  user-select: none;
  transition: 0.2s;
  text-decoration: none;
}
.button-gafk:hover, .btn-gafk:hover, .button-gafk:focus, .btn-gafk:focus {
  color: #cccfcd;
  text-decoration: none;
}
.button-gafk:active, .btn-gafk:active {
  background-image: none;
  outline: 0;
}

.button-gafk {
  color: #fff;
  background-color: var(--main);
  border-color: var(--main-hover);
  width: auto;
  max-width: 320px;
  font-size: calc(var(--size-base) * 1.5);
  margin: 0 auto;
}

.but-gafk {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 12px;
  transition: 0.2s;
}
.but-gafk:hover {
  color: var(--main);
}
.but-gafk:after {
  content: "";
  display: block;
  border-bottom: 1px solid #000;
  width: 30%;
  margin: 5px auto 0;
}

.itc-slider {
  position: relative;
}

.itc-slider-wrapper {
  overflow: hidden;
}

.itc-slider-items {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.itc-slider-transition-none {
  transition: none;
}

.itc-slider-item {
  flex: 0 0 100%;
  max-width: 100%;
  user-select: none;
  will-change: transform;
}

/* кнопки влево и вправо */
.itc-slider-btn {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 50px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  transform: translateY(-50%);
  cursor: pointer;
}

.itc-slider-btn-hide {
  display: none;
}

.itc-slider-btn-prev {
  left: 0;
}

.itc-slider-btn-next {
  right: 0;
}

.itc-slider-btn:hover,
.itc-slider-btn:focus {
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.3);
  outline: 0;
}

.itc-slider-btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.itc-slider-btn-prev::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.itc-slider-btn-next::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/* индикаторы */
.itc-slider-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  margin: 0 15%;
  padding-left: 0;
  list-style: none;
}

.itc-slider-indicator {
  flex: 0 1 auto;
  box-sizing: content-box;
  width: 30px;
  height: 5px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5);
  background-clip: padding-box;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  cursor: pointer;
}

.itc-slider-indicator-active {
  background-color: rgba(255, 255, 255, 0.9);
}

.partners {
  background-color: var(--main);
}
.partners .swiper-container {
  overflow: hidden;
}
.partners .swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}
.partners .swiper-slide {
  width: auto !important;
}
.partners .swiper-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}/*# sourceMappingURL=itc-slider.css.map */