@charset "UTF-8";
:root {
  --index: calc(1vw + 1vh);
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  /* исправлено */
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  color: var(--color-text);
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
  color: var(--color-text-g);
}

legend {
  display: block;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #f8f9fa;
}

body::-webkit-scrollbar {
  width: 14px; /* ширина scrollbar */
}
body::-webkit-scrollbar-track {
  background-color: #1D1D1B; /* цвет дорожки */
  padding: 30px; /* добавляем отступ */
}
body::-webkit-scrollbar-thumb {
  background-color: #E0B364; /* цвет плашки */
  border-radius: 20px; /* закругления плашки */
  border: 3px solid #1D1D1B; /* padding вокруг плашки */
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #fdb63c; /* цвет при наведении */
}

.swiper {
  width: 100%;
  height: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.testimonials-section .section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6c757d;
  margin-bottom: 10px;
}
.testimonials-section .section-subtitle {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1D1D1B;
}
.testimonials-section .section-description {
  font-size: 16px;
  color: #6c757d;
}
.testimonials-section .testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px 20px 40px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonials-section .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.testimonials-section .testimonial-card .testimonial-text {
  font-size: 16px;
  color: #1D1D1B;
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center; /* если нужно, чтобы внутренности тоже были по центру */
  width: -moz-max-content;
  width: max-content; /* или конкретную ширину, например 300px */
  margin: 0 auto;
}
.testimonials-section .testimonial-card .testimonial-author img {
  display: none;
}
.testimonials-section .testimonial-card .testimonial-author .author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.testimonials-section .testimonial-card .testimonial-author .author-name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 2px;
}
.testimonials-section .testimonial-card .testimonial-author .author-role {
  font-size: 12px;
  color: #6c757d;
}
.testimonials-section .testimonial-pagination {
  margin-top: 20px;
}
.testimonials-section .testimonial-pagination .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
}
.testimonials-section .testimonial-pagination .dot.active {
  background-color: #4c7e57;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #E0B364;
}/*# sourceMappingURL=comment.css.map */