/* Файл mixins.less */
p {
  font-size: 16px;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: calc(16px * 2.5);
  line-height: 1.2;
  /* использование миксина */
  font-weight: bold;
  font-display: swap;
  /* добавляем font-display */
}
a {
  font-size: 16px;
  line-height: 1.5;
  /* использование миксина */
  text-decoration: none;
  font-display: swap;
  /* добавляем font-display */
}
.wrapper {
  padding-left: 55px;
  padding-right: 55px;
}
.wrapper-centered {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
/* Примеры дополнительных миксинов */
.shadow {
  box-shadow: 0 24px 30px -20px rgba(0, 0, 0, 0.35);
}
.area {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .area {
    width: 320px;
  }
}
@media (max-width: 1024px) {
  .area {
    width: 768px;
  }
}
@media (max-width: 1280px) {
  .area {
    width: 1024px;
  }
}
/* Файл default.less */
/* Сброс стилей */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  background: #32154B url('../../images/background.webp') no-repeat top center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 20px;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
ul,
ol {
  margin-left: 0;
  padding-left: 1.5em;
}
a {
  color: #007bff;
  transition: color 0.3s ease;
}
a:hover {
  color: #0056b3;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid #007bff;
  background-color: #007bff;
  color: #ffffff;
  transition: background-color 0.3s ease;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background-color: #0056b3;
}
/* Установки для формы */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea {
  display: block;
  width: 100%;
  padding: 0.5em;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  border: 1px solid #cccccc;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
.section-block-title {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section-block-title {
    font-size: 24px;
  }
}
.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.wp-block-file {
  margin-bottom: 20px;
}
.wp-block-file a {
  font-size: 18px;
}
.header {
  position: relative;
  overflow: hidden;
  /* Чтобы скрыть выход за границы области */
  z-index: 1;
  min-height: 426px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .header {
    min-height: auto;
  }
}
.header:before,
.header:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.header:before {
  animation: animateBackground-left 4s forwards;
  /* Анимация увеличения и остановки */
  background: url('../../images/large-circle.webp') no-repeat left top;
}
.header:after {
  animation: animateBackground-right 4s forwards;
  /* Анимация увеличения и остановки */
  right: 0;
  background: url('../../images/middle-circle.webp') no-repeat right bottom;
}
@keyframes animateBackground-left {
  0% {
    left: -10%;
    transform: scale(1.1);
  }
  100% {
    left: 0;
    transform: scale(1);
  }
}
@keyframes animateBackground-right {
  0% {
    transform: scale(1.1);
    right: -12%;
    top: -5%;
  }
  100% {
    right: 0;
    transform: scale(1);
  }
}
.front-page-header {
  max-height: 52.625em;
  min-height: 52.625em;
}
.front-page-header .header-content {
  flex-shrink: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .front-page-header {
    min-height: auto;
  }
}
@media (max-width: 1280px) {
  @keyframes animateBackground-left {
    0% {
      left: -10%;
      transform: scale(1.1);
    }
    100% {
      left: -15%;
      transform: scale(0.8);
    }
  }
}
@media (max-width: 768px) {
  .header:before {
    background: none;
  }
  .header:after {
    background: none;
  }
}
.top-inner {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(50, 21, 75, 0.7);
  backdrop-filter: blur(10px);
  padding: 20px 0;
}
.top-inner .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .top-inner .wrapper {
    padding: 0 15px;
  }
}
.top-inner .wrapper .additional-elements {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .top-inner .wrapper .additional-elements {
    width: 100%;
    justify-content: space-between;
  }
}
.top-inner .wrapper .additional-elements-item {
  margin: 0 10px;
}
.top-inner .wrapper .additional-elements .low-vision button {
  background: none;
  border: none;
}
.top-inner .wrapper .additional-elements .search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .top-inner .wrapper .additional-elements .search-form {
    margin-left: auto;
  }
}
.top-inner .wrapper .additional-elements .cart-widget {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  align-self: stretch;
  padding: 0 25px;
  border-radius: 2px;
}
.top-inner .wrapper .additional-elements .cart-widget .rs-cart {
  margin-right: 5px;
  font-size: 22px;
}
.top-inner .wrapper .additional-elements .authorization a {
  color: white;
}
.top-inner .wrapper .additional-elements .authorization a:hover {
  color: #FF8C55;
}
ul.top-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99999;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
ul.top-navigation > li {
  display: inline-block;
  font-size: 16px;
  margin: 0 5px;
  position: relative;
  padding: 5px 0;
}
ul.top-navigation > li:first-child {
  margin-left: 0;
}
ul.top-navigation > li:last-child {
  margin-right: 0;
}
ul.top-navigation > li > a {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: white;
  transition: ease-in-out 0.3s;
  margin: 0 10px;
}
ul.top-navigation > li > a:hover {
  color: #FF8C55;
}
ul.top-navigation > li > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  min-width: 200px;
  z-index: 1;
  background: white;
  padding: 10px;
  border-radius: 4px;
  margin: 5px 0 0 0;
}
ul.top-navigation > li > .sub-menu > li {
  display: block;
  font-size: 14px;
  margin: 5px 0;
  position: relative;
}
ul.top-navigation > li > .sub-menu > li > a {
  color: #525252;
  text-decoration: none;
  font-size: 16px;
  border: none;
  text-transform: none;
  font-weight: normal;
  display: block;
  padding: 5px 0;
}
ul.top-navigation > li > .sub-menu > li > a:hover {
  color: #FF8C55;
}
ul.top-navigation > li > .sub-menu > li > .sub-menu {
  left: 100%;
  top: 0;
  margin-left: 10px;
  margin-top: -10px;
  /* Смещение подменю относительно родительского пункта */
  display: none;
  position: absolute;
  background: #fff;
  flex-direction: column;
  width: 100%;
}
ul.top-navigation > li > .sub-menu > li > .sub-menu a {
  display: block;
  padding: 10px 10px;
}
ul.top-navigation > li > .sub-menu > li > .sub-menu a:hover {
  color: #0a4b78;
}
ul.top-navigation .menu-item-has-children a {
  padding-right: 20px;
  position: relative;
}
ul.top-navigation .menu-item-has-children:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
}
ul.top-navigation .menu-item-has-children .sub-menu .menu-item-has-children:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #32154b;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.search-form-form .search-container {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.search-form-form .search-container.expanded {
  width: auto;
  /* устанавливаем ширину на auto, когда класс expanded применен */
}
.search-form-form .search-container input {
  width: 0;
  height: 40px;
  opacity: 0;
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
  padding: 10px;
  /* добавляем отступы */
  border-radius: 2px;
  border: none;
  margin-right: 10px;
  background: white;
  color: black;
  outline: none;
}
.search-form-form .search-container input::placeholder {
  color: gray;
}
.search-form-form .search-container input.expanded {
  width: 140px;
  opacity: 1;
}
.search-form-form .search-container button {
  cursor: pointer;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 4px;
}
.search-form-form .search-container button .rs-searchbtn {
  font-size: 20px;
  color: white;
}
.hidden {
  display: none;
}
body .bvi-body .search-form-form .search-container input {
  border: 1px solid #000;
}
body .bvi-body .search-form-form .search-container input::placeholder {
  color: black;
}
.burger-menu {
  position: relative;
  cursor: pointer;
  margin-left: 20px;
}
.burger-menu .rs-burger {
  color: white;
  font-size: 22px;
}
.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #f2f2f2;
  transition: left 0.3s ease;
  overflow: auto;
  z-index: 999999999;
  padding: 0 10px 0 0;
}
.side-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #525252;
}
.side-menu a:hover {
  color: #000;
}
.side-menu .menu-item-has-children {
  position: relative;
}
.side-menu .menu-item-has-children:after {
  content: "\25BC";
  /* символ треугольника вниз */
  position: absolute;
  top: 20px;
  right: 0;
  transform: translateY(-50%);
  font-size: 10px;
}
.side-menu .menu-item-has-children .sub-menu {
  top: 100%;
  left: 0;
  display: none;
}
.side-menu .menu-item-has-children .sub-menu.expanded {
  display: block;
}
.active {
  left: 0;
}
/* Дополнительные стили для пунктов меню */
@media (max-width: 768px) {
  .burger-menu {
    font-size: 25px;
    margin-left: 5px;
  }
}
.header-content .wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 768px) {
  .header-content .wrapper {
    flex-direction: column;
    padding: 0 15px;
  }
}
.header-content .wrapper .site-name {
  color: white;
}
@media (max-width: 768px) {
  .header-content .wrapper .site-name {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
.header-content .wrapper .site-name .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  .header-content .wrapper .site-name .logo {
    justify-content: center;
  }
}
.header-content .wrapper .site-name .logo img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-right: 10px;
}
.header-content .wrapper .site-name .logo h1 {
  font-size: 106px;
  line-height: 100%;
  margin-bottom: 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .header-content .wrapper .site-name .logo h1 {
    font-size: 68px;
  }
}
.header-content .wrapper .site-name .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header-content .wrapper .site-name .wrap img {
  margin-right: 20px;
}
.header-content .wrapper .site-name .wrap .header-content-data h2 {
  font-weight: normal;
}
@media (max-width: 1280px) {
  .header-content .wrapper .site-name .wrap .header-content-data h2 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header-content .wrapper .site-name .wrap .header-content-data h2 {
    text-align: center;
  }
}
.soc-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .soc-icons {
    justify-content: center;
  }
}
.soc-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  position: relative;
  margin-right: 20px;
  border-radius: 25px;
  overflow: hidden;
  /* Обрезаем лишний фон */
  z-index: 1;
  border: 1px solid;
  background-image: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  background-origin: border-box;
  box-shadow: inset 0 1000px #32154B;
  border: 2px solid transparent;
  color: white;
}
@media (max-width: 768px) {
  .soc-icons a {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.soc-icons a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  transform: scale(0);
  /* Начальное состояние - увеличиваем с нуля */
  transform-origin: center;
  /* Опорная точка для масштабирования */
  transition: transform 0.4s;
  /* Анимация масштабирования */
  border-radius: 20px;
  z-index: -1;
}
.soc-icons a:hover:before {
  transform: scale(0.8);
  /* Увеличиваем до обычного состояния при наведении */
}
.soc-icons .feedback {
  margin-left: auto;
}
.soc-icons .feedback a {
  width: auto;
  padding: 0 10px;
}
.soc-icons .feedback a:hover:before {
  transform: scale(1);
}
.events-slider {
  max-width: 500px;
  min-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.events-slider-item-wrap {
  display: flex;
}
.events-slider-item {
  margin: 0 auto;
  display: block;
}
.events-slider-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.events-slider-date.visible {
  opacity: 1;
  transform: translateY(0);
}
.events-slider-date .day {
  font-size: 62px;
  font-weight: bold;
  margin-right: 10px;
}
.events-slider-date .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.events-slider-date .wrap .month {
  text-transform: uppercase;
}
.events-slider-thumbnail {
  width: 500px;
  height: 381px;
  margin-bottom: 20px;
  text-align: center;
  pacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.events-slider-thumbnail.visible {
  opacity: 1;
  transform: translateY(0);
}
.events-slider-thumbnail img {
  width: 100%;
  height: inherit;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}
.events-slider-thumbnail:after {
  position: absolute;
  content: url('../../images/events-slider-bg-pattern.webp');
  display: block;
  right: -40px;
  top: -60px;
}
.events-slider-description {
  color: white;
  min-height: 20px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.events-slider-description.visible {
  opacity: 1;
  transform: translateY(0);
}
.events-slider-readmore {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.events-slider-readmore.visible {
  opacity: 1;
  transform: translateY(0);
}
.events-slider-readmore .rs-arrowr {
  transition: ease-in-out 0.3s;
}
.events-slider-readmore a {
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  background-image: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  background-origin: border-box;
  box-shadow: inset 0 1000px #32154B;
  border-radius: 4px;
  border: 2px solid transparent;
}
.events-slider-readmore span {
  background: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.events-slider-readmore:hover .rs-arrowr {
  margin-left: 10px;
}
.events-slider-arrows {
  position: absolute;
  top: 50%;
  bottom: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 130%;
  cursor: pointer;
}
.events-slider-arrows .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #B443AB;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.events-slider-bullets {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.events-slider-bullets .bullet {
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  margin-right: 8px;
  border-radius: 8px;
}
.events-slider-bullets .bullet.active {
  background: #FF8C55;
}
.single-header-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-header-content_title {
  font-size: 60px;
  text-align: center;
  color: white;
  max-width: 1024px;
  font-weight: 300;
  width: 100%;
  margin: 85px auto 0;
}
.single-header-content_breadcrumbs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding-bottom: 60px;
}
.single-header-content_breadcrumbs ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.single-header-content_breadcrumbs ul li {
  margin-right: 10px;
}
.single-header-content_breadcrumbs ul li a {
  color: white;
}
.single-header-content_breadcrumbs ul li a:after {
  font-family: rs-fonts-2;
  content: '\e800';
  margin-left: 10px;
  font-size: 12px;
}
.section-welcome-text {
  padding: 119px 0;
}
@media (max-width: 768px) {
  .section-welcome-text {
    padding: 0;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .section-welcome-text .wrapper-centered {
    padding: 0 15px;
  }
}
.section-welcome-text .welcome-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .section-welcome-text .welcome-text {
    flex-direction: column;
  }
}
.section-welcome-text .welcome-text .welcome-text-thumbnail {
  flex-shrink: 0;
  width: 470px;
  height: 306px;
  overflow: hidden;
  margin-right: 30px;
}
.section-welcome-text .welcome-text .welcome-text-thumbnail img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .section-welcome-text .welcome-text .welcome-text-thumbnail {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}
.section-welcome-text .welcome-text .welcome-text-body {
  color: white;
  overflow: hidden;
}
.section-welcome-text .welcome-text .welcome-text-body .welcome-text-title {
  display: flex;
  align-items: center;
  justify-self: space-between;
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .section-welcome-text .welcome-text .welcome-text-body .welcome-text-title {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
}
.section-welcome-text .welcome-text .welcome-text-body .welcome-text-title h2 {
  text-transform: uppercase;
  font-size: 28px;
  flex-grow: 1;
  flex-shrink: 0;
}
.section-welcome-text .welcome-text .welcome-text-body .welcome-text-title .welcome-text-title-line {
  display: block;
  width: 100%;
  height: 5px;
  background: white;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .section-welcome-text .welcome-text .welcome-text-body .welcome-text-title .welcome-text-title-line {
    display: none;
  }
}
.section-welcome-text .welcome-text .welcome-text-body .welcome-text-content p {
  margin-bottom: 20px;
}
.section-segments {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 430px;
}
@media (max-width: 768px) {
  .section-segments {
    min-height: auto;
    background: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
    padding: 40px 20px;
  }
}
.section-segments-block {
  width: calc(100% / 2);
  align-self: stretch;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 30px;
}
.section-segments-block:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
@media (max-width: 768px) {
  .section-segments-block {
    padding: 30px;
    justify-content: space-between;
    margin: 5px;
    border-radius: 12px;
    overflow: hidden;
  }
}
.section-segments-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-image: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%) 30;
  border-width: 2px;
  border-style: solid;
  height: 100%;
  padding: 0 30px;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 768px) {
  .section-segments-body {
    border: none;
    padding: 5px;
  }
}
.section-segments-title {
  text-transform: uppercase;
  text-align: center;
  font-size: 28px;
  color: white;
}
.section-segments-title a {
  color: white;
}
@media (max-width: 768px) {
  .section-segments-title {
    font-size: 12px;
    font-weight: bold;
  }
}
.section-segments-line {
  width: 30%;
  height: 3px;
  display: block;
  background: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  margin: 20px 0;
}
.section-segments-readmore a {
  display: block;
  border: 1px solid white;
  color: white;
  padding: 10px 25px;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(10px);
  transition: background ease-in-out 0.3s, transform 0.3s ease-in-out;
}
.section-segments-readmore a:hover {
  background: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  transform: translateY(0);
  transition-delay: 0.1s;
  /* Добавляем задержку перед анимацией */
}
.section-schedule {
  color: white;
  height: 100%;
}
.section-schedule .wrapper-centered {
  padding: 90px 0;
}
@media (max-width: 768px) {
  .section-schedule-body {
    overflow-x: scroll;
  }
}
.section-schedule-body table {
  width: 100%;
  position: relative;
}
.section-schedule-body table:after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  background: linear-gradient(transparent, #32154B);
}
.section-schedule-body table.expanded:after {
  background: none;
  z-index: -1;
}
.section-schedule-body table thead {
  font-weight: bold;
}
.section-schedule-body table th {
  background: #32154B;
  border: 1px solid #482963;
  color: white;
  padding: 10px;
  text-align: left;
}
.section-schedule-body table tr:hover {
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.2);
}
.section-schedule-body table tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.3);
}
.section-schedule-body table tr:nth-child(odd):hover {
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.2);
}
.section-schedule-body table tr a {
  color: white;
  transition: ease-in-out 0.3s;
}
.section-schedule-body table tr a:hover {
  opacity: 0.6;
}
.section-schedule-body table td {
  padding: 10px;
}
.section-schedule-footer {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.section-schedule-footer button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: none;
  border: none;
}
/* Стили для плавного появления строк таблицы */
.table-row {
  opacity: 1;
  transform: translateY(0);
}
.events-section {
  background: url('../../images/events-section-bg.webp') no-repeat center top;
  position: relative;
}
.events-section:after,
.events-section:before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
}
.events-section:after {
  background: linear-gradient(180deg, #32154B 7.29%, rgba(50, 21, 75, 0) 100%);
  backdrop-filter: blur(10px);
  top: -1px;
  left: 0;
}
.events-section:before {
  background: white;
  height: 25%;
  bottom: 0;
  z-index: 1;
}
.events-section .events-section-title {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  color: white;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .events-section .events-section-title {
    font-size: 24px;
  }
}
.events-section .wrapper-centered {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .events-section .wrapper-centered {
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: flex-start;
    padding: 0 15px 30px;
  }
}
.events-section .event {
  box-shadow: 0 24px 30px -20px rgba(0, 0, 0, 0.35);
  border-radius: 6px;
}
@media (max-width: 768px) {
  .events-section .event {
    flex-shrink: 0;
    margin: 0 10px !important;
  }
}
.latest-news {
  background: white;
}
@media (max-width: 768px) {
  .latest-news .wrapper {
    padding: 0 15px;
  }
}
.latest-news .wrapper .section-block-title {
  color: #ccc;
}
.latest-news .wrapper .latest-news-posts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.article {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: calc(100% / 3 - 30px);
  background: #F2F2F2;
  padding: 20px;
  align-self: stretch;
}
@media (max-width: 768px) {
  .article {
    width: 100%;
  }
}
.article .article-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .article .article-wrap {
    flex-wrap: wrap;
  }
}
.article-publication-date {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  top: -20px;
  left: 20px;
  font-weight: bold;
  color: white;
  line-height: 100%;
  background: #B443AB;
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 4px;
  z-index: 10;
}
.article-publication-date .day {
  font-size: 24px;
}
.article-publication-date .month {
  font-size: 14px;
}
.article-publication-date .year {
  font-size: 10px;
}
.article-thumbnail {
  max-width: 600px;
  min-width: 270px;
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  height: 100%;
  margin-right: 20px;
  margin-bottom: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100%;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .article-thumbnail {
    width: 100%;
    height: auto;
  }
}
.article-thumbnail img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease-in-out 0.3s;
}
.article-thumbnail:hover img {
  transform: scale(1.2);
}
.article-body {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.article-content {
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-content-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-content-meta .rs-like {
  flex-shrink: 0;
}
.article-content-meta .readmore {
  background: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: auto;
}
.article-content-meta .readmore .rs-arrowr {
  transition: ease-in-out 0.3s;
}
.article-title {
  font-size: 18px;
  text-transform: uppercase;
}
.article-title a {
  color: #B443AB;
  font-weight: bold;
}
.article-excerpt {
  font-size: 14px;
  font-style: italic;
  color: #525252;
}
.article-footer .edit-post-link {
  position: absolute;
  top: 0;
  right: 0;
}
.article-meta {
  font-size: 10px;
  font-weight: bold;
}
.article-meta .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.article-meta-item {
  margin: 0 0 5px 0;
}
.article-meta-item .rs-eye {
  vertical-align: middle;
  margin-right: 10px;
}
.article-meta-item .icon.rs-comments {
  vertical-align: middle;
}
.article-meta-item svg {
  vertical-align: middle;
  margin-right: 5px;
}
.single {
  background: white;
  padding: 0;
}
.single .wrapper-centered {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  .single .wrapper-centered {
    flex-direction: column;
    padding: 0 15px;
  }
}
.single .wrapper-centered .single-content {
  font-size: 18px;
  width: 100%;
}
.single .wrapper-centered .single-content_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.single .wrapper-centered .single-content_meta ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 15px;
  padding: 20px 0;
}
.single .wrapper-centered .single-content_meta ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single .wrapper-centered .single-content p {
  margin-bottom: 20px;
}
.single .wrapper-centered .single-content blockquote.wp-block-quote {
  position: relative;
  border-left: 1px solid #FF8C55;
  padding-left: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.single .wrapper-centered .single-content blockquote.wp-block-quote p {
  margin-bottom: 0;
}
.sidebar {
  max-width: 320px;
  min-width: 270px;
  width: 100%;
}
.sidebar .widget {
  background: #f9f9f9;
  margin: 20px 0;
  padding: 20px;
  border-radius: 8px;
}
.sidebar .widget .widget-title,
.sidebar .widget .wp-block-heading,
.sidebar .widget .wp-block-group__inner-container > h2 {
  position: relative;
  color: #32154B;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  left: -12px;
}
.sidebar .widget a {
  color: #525252;
}
.sidebar .widget a:hover {
  color: #FF8C55;
}
.sidebar .widget ul,
.sidebar .widget ol {
  padding: 0;
}
.sidebar .widget ul li,
.sidebar .widget ol li {
  margin-bottom: 10px;
  position: relative;
}
.sidebar .widget ul li:before,
.sidebar .widget ol li:before {
  position: absolute;
  display: block;
  content: '';
  width: 7px;
  height: 7px;
  background: #b3b3b3;
  left: -12px;
  top: 8px;
  bottom: auto;
  margin: auto;
  border-radius: 50px;
}
.sidebar .widget select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
}
.sidebar .has-background {
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .sidebar {
    margin: auto;
  }
}
.comments-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.comments-list p {
  color: #000;
}
.comments-list a {
  color: #000;
  font-family: 'rs-Inter Light', sans-serif;
}
.comments-list h2,
.comments-list h3,
.comments-list h4,
.comments-list h5,
.comments-list h6 {
  color: #000;
}
.comments-list .comment-body {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.comments-list .comment-body .comment-content {
  width: 100%;
}
.comment {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fbfbfb;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
}
.comment ul.children {
  margin-top: 30px;
  width: 100%;
  padding: 0;
}
.comment-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.comment-meta .comment-metadata a {
  font-size: 14px;
}
.comment-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.comment-author {
  font-size: 14px;
  margin-right: auto;
  margin-left: 10px;
}
.comment-author b {
  font-weight: normal;
}
.comment-author img {
  margin-bottom: 10px;
}
.comment-date {
  font-size: 10px;
}
.comment-content {
  font-size: 16px;
  line-height: 1.5;
}
.comment-reply-title {
  margin-top: 20px;
  font-size: 16px;
}
.comment-reply-title small {
  width: 100%;
  display: inline-block;
}
.comment-reply-title #cancel-comment-reply-link {
  border: 1px solid;
  padding: 10px 15px;
  border-radius: 4px;
  float: right;
}
.comment-reply-link {
  background: #ccc;
  display: inline-block;
  line-height: 1;
  padding: 10px;
  border-radius: 3px;
  margin-top: 30px;
  font-size: 12px;
}
.comment-form {
  margin-bottom: 30px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 16px;
}
.comment-form textarea {
  height: 150px;
}
.comment-form input[type="submit"] {
  background-color: #32154B;
  color: white;
  border: 1px solid;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}
.comment-form input[type="submit"]:hover {
  background-color: transparent;
  color: #000;
}
.category {
  padding: 60px 0;
}
.category_posts {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.pagination-wrap {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.pagination .page-numbers,
.pagination .prev,
.pagination .next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  position: relative;
  margin-right: 20px;
  border-radius: 25px;
  overflow: hidden;
  /* Обрезаем лишний фон */
  z-index: 1;
  border: 1px solid;
  background-image: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  background-origin: border-box;
  box-shadow: inset 0 1000px #32154B;
  border: 2px solid transparent;
  color: white;
}
.pagination .page-numbers:before,
.pagination .prev:before,
.pagination .next:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  transform: scale(0);
  /* Начальное состояние - увеличиваем с нуля */
  transform-origin: center;
  /* Опорная точка для масштабирования */
  transition: transform 0.4s;
  /* Анимация масштабирования */
  border-radius: 20px;
  z-index: -1;
}
.pagination .page-numbers:hover:before,
.pagination .prev:hover:before,
.pagination .next:hover:before {
  transform: scale(0.8);
  /* Увеличиваем до обычного состояния при наведении */
}
.pagination .page-numbers.current:before,
.pagination .prev.current:before,
.pagination .next.current:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  transform: scale(0.8);
  /* Начальное состояние - увеличиваем с нуля */
  transform-origin: center;
  /* Опорная точка для масштабирования */
  transition: transform 0.4s;
  /* Анимация масштабирования */
  border-radius: 20px;
  z-index: -1;
}
.pagination .page-numbers.dots,
.pagination .prev.dots,
.pagination .next.dots {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;
  color: #999;
}
.pagination-input {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 10px 7px 0;
  color: white;
}
.pagination-input span {
  margin-right: 10px;
  width: 100%;
}
.pagination-input input {
  min-width: 40px;
  max-width: 80px;
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.pagination-input button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 20px;
  border-radius: 4px;
  margin-left: 10px;
  overflow: hidden;
  /* Обрезаем лишний фон */
  z-index: 1;
  border: 1px solid;
  background-image: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
  background-origin: border-box;
  box-shadow: inset 0 1000px #32154B;
  border: 2px solid transparent;
  color: white;
  padding: 0 25px;
  align-self: stretch;
}
.single-product {
  padding: 60px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  .single-product {
    flex-direction: column;
  }
}
.single-product .woocommerce-product-gallery {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.single-product .entry-summary {
  width: 100%;
}
.single-product .entry-summary .product_title {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 10px;
  padding: 0 0 20px;
}
.single-product .entry-summary .price {
  font-size: 34px;
  color: #32154B;
  font-weight: 600;
  text-align: right;
}
.single-product .entry-summary .woocommerce-product-details__short-description {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .woocommerce-product-gallery {
    max-width: 100%;
    width: 100%;
  }
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-thumbnails {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-thumbnails .woocommerce-product-gallery__image {
  width: calc(100% / 3 - 10px);
}
.variations_form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  background: #f2f2f2;
  padding: 10px;
  border-radius: 8px;
}
.variations_form .variations {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
.variations_form .variations th {
  text-align: left;
  padding: 8px;
}
.variations_form .variations td {
  padding: 8px;
}
.variations_form .variations select {
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}
.variations_form .variations .reset_variations {
  visibility: hidden;
  font-size: 14px;
}
.variations_form .single_variation_wrap {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
.variations_form .single_variation_wrap .woocommerce-variation-add-to-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart {
    flex-wrap: wrap;
  }
}
/* Стили для формы корзины */
form.cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
/* Стили для поля ввода количества товара */
div.quantity {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  div.quantity {
    width: 100%;
  }
}
input.input-text.qty {
  width: 80px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  outline: none;
}
@media (max-width: 768px) {
  input.input-text.qty {
    width: 100%;
  }
}
/* Стили для кнопки "В корзину" */
button.single_add_to_cart_button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  button.single_add_to_cart_button {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
  }
}
button.single_add_to_cart_button:hover {
  background-color: #0056b3;
}
/* Файл styles.less */
/* Стили для контейнера с мета-информацией продукта */
div.product_meta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  color: #888;
  /* Дополнительные стили */
}
/* Стили для артикула */
span.sku_wrapper {
  display: flex;
  align-items: center;
  margin-right: 15px;
  /* Дополнительные стили */
}
span.sku {
  font-weight: bold;
  color: #555;
  /* Дополнительные стили */
}
/* Стили для категории и меток */
span.posted_in,
span.tagged_as {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* Дополнительные стили */
}
span.posted_in a,
span.tagged_as a {
  text-decoration: none;
  color: #007bff;
  margin-left: 5px;
  /* Дополнительные стили */
}
.tabs {
  width: 100%;
  margin-bottom: 1em;
  overflow: hidden;
}
.panel-heading {
  margin-top: 5px;
  width: 100%;
}
.panel-heading a {
  background: #18222B;
  color: white;
  display: block;
  text-decoration: none;
  padding: 10px 40px 10px 15px;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-heading a .rs-angle-down {
  font-size: 8px;
}
.panel-heading a:hover {
  opacity: 0.75;
}
.panel-heading.in a {
  opacity: 0.75;
}
.panel-collapse,
.woocommerce-Reviews {
  display: none;
  padding-bottom: 20px;
}
.panel-collapse .panel-body,
.woocommerce-Reviews .panel-body {
  padding: 10px;
}
.useful-links {
  position: relative;
  padding: 60px 0;
  background: white;
}
.useful-links .wrapper-centered .section-block-title {
  color: #ccc;
}
@media (max-width: 768px) {
  .useful-links .wrapper-centered {
    padding: 0 50px;
  }
}
.useful-links .useful-links-nav-buttons {
  position: absolute;
  top: 50%;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.useful-links .useful-links-nav-buttons .wrapper-centered {
  display: flex;
  justify-content: space-between;
}
.useful-links .useful-links-nav-buttons .wrapper-centered button {
  background: rgba(0, 0, 0, 0.25);
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.useful-links .useful-links-nav-buttons .wrapper-centered button:first-child {
  margin-left: -50px;
}
.useful-links .useful-links-nav-buttons .wrapper-centered button:last-child {
  margin-right: -50px;
}
/* Скрываем часть слайдов, чтобы показывать только один ряд в одно время */
.small-banners {
  overflow: hidden;
  position: relative;
}
/* Расположение ряда слайдов */
.slider-track {
  display: flex;
  transition: transform 0.3s ease;
}
/* Отображение одного слайда за раз */
.slider-slide {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .slider-slide {
    align-content: flex-start;
  }
}
/* Стили для баннеров */
.small-banner {
  width: calc(100% / 5 - 30px);
  padding: 10px;
  box-sizing: border-box;
  /* Учитываем padding в общей ширине элемента */
}
@media (max-width: 768px) {
  .small-banner {
    width: calc(100% / 2 - 0px);
  }
}
.small-banner img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 5px;
}
.small-banner-title {
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.gosuslugi-banner {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .gosuslugi-banner .wrapper-centered {
    padding: 0 15px;
  }
}
.footer-contacts {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .footer-contacts .wrapper-centered {
    padding: 0 15px;
    flex-direction: column;
    text-align: center;
  }
}
.footer-contacts .wrapper-centered .contacts {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer-contacts .wrapper-centered .contacts {
    flex-direction: column;
  }
}
.footer-contacts .wrapper-centered .contacts-map {
  flex-shrink: 0;
  max-width: 670px;
  min-width: 320px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .footer-contacts .wrapper-centered .contacts-map {
    max-height: 400px;
  }
}
.footer-contacts .wrapper-centered .contacts-data {
  width: 100%;
  color: white;
}
.footer-contacts .wrapper-centered .contacts-data .section-block-title {
  color: white;
  text-align: left;
  margin-bottom: 10px;
  line-height: 100%;
}
@media (max-width: 768px) {
  .footer-contacts .wrapper-centered .contacts-data .section-block-title {
    text-align: center;
  }
}
.footer-contacts .wrapper-centered .contacts-data ul {
  padding: 0;
}
.footer-contacts .wrapper-centered .contacts-data ul b {
  font-weight: bold;
}
.footer-contacts .wrapper-centered .contacts-data ul a {
  color: white;
  text-decoration: underline;
}
.footer-contacts .wrapper-centered .contacts-data ul li {
  margin-bottom: 10px;
}
.footer-contacts .wrapper-centered .contacts-data .feedback-form {
  margin-top: 20px;
}
.footer-contacts .wrapper-centered .contacts-data .feedback-form h2 {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 600;
}
.footer-contacts .wrapper-centered .contacts-data .feedback-form form {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.footer-contacts .wrapper-centered .contacts-data .feedback-form form input[type="submit"] {
  border: none;
  outline: none;
  background: linear-gradient(180deg, #FF49AD 0%, #FE9551 100%);
}
.footer-contacts .wrapper-centered .contacts-data .feedback-form form textarea {
  max-height: 100px;
  margin-bottom: 10px;
}
.footer-contacts .wrapper-centered .contacts-data .feedback-form form p:last-child {
  text-align: right;
  display: block;
}
.copyright-and-developer {
  padding-top: 60px;
  font-size: 14px;
  color: white;
}
.copyright-and-developer .wrapper-centered {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .copyright-and-developer .wrapper-centered {
    padding: 0 15px;
    flex-direction: column;
    text-align: center;
  }
}
.copyright-and-developer .copyright {
  max-width: 530px;
  width: 100%;
}
.copyright-and-developer .copyright p {
  margin: 10px 0;
}
.copyright-and-developer .copyright a {
  color: white;
  text-decoration: underline;
}
.copyright-and-developer .developer {
  max-width: 530px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row-reverse;
  text-align: right;
}
@media (max-width: 768px) {
  .copyright-and-developer .developer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
.copyright-and-developer .developer .rs-rs-logo {
  font-size: 48px;
}
