@charset "UTF-8";

:root {
  --swiper-theme-color: #a58ada;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.3;
}

body.off-canvas-active {
  overflow: hidden;
}

body.off-canvas-active .header-toggle svg:first-child {
  display: none;
}

body.off-canvas-active .header-toggle svg:last-child {
  display: block;
}

body.off-canvas-active .overlay {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

body.off-canvas-active .off-canvas {
  transform: translateX(0);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.site {
  flex-grow: 1;
}

.container {
  max-width: 1200px;
  padding: 0 10px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.overlay {
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.header {
  background-color: #fff;
}

.header-main-inner {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header-logo {
  flex-basis: 260px;
  flex-shrink: 0;
}

.header-logo-link {
  display: flex;
}

.header-logo-link img {
  max-width: 180px;
  height: auto;
}

.header-main-row {
  display: flex;
  flex-grow: 1;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.header-main-col {
  position: relative;
  padding-right: 10px;
}

.header-main-col:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #ccc;
  position: absolute;
  left: -26px;
  top: 50%;
  transform: translateY(-50%);
}

.header-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
}

.header-item:not(:last-child) {
  margin-bottom: 6px;
}

a.header-item {
  color: currentColor;
  text-decoration: none;
  transition: 0.2s;
}

a.header-item:hover {
  color: #a772db;
}

.header-item-icon {
  display: flex;
  color: #fdc400;
}

.header-item-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.header-item-icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.header-item-icon.header-item-icon-green {
  color: #25d366;
}

.header-item-content span {
  white-space: nowrap;
}

.header-item-content b {
  font-weight: 600;
}

.header-main-buttons {
  flex-shrink: 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

.header-main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  color: #000;
  padding: 0;
}

.header-main-button svg {
  width: 32px;
  height: 32px;
}

.header-button .button {
  min-height: 28px;
  font-size: 12px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #57bb90;
}

.header-button-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 10px;
  gap: 2px;
}

.header-button-info-image img {
  max-height: 13px;
  width: auto;
  display: block;
}

.header-button-info-text {
  text-align: right;
}

.header-button-info-text span {
  white-space: nowrap;
}

.header-bottom {
  background-color: #f7f7f7;
}

.header-bottom-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header-menu {
  flex-grow: 1;
}

.header-bottom-content {
  flex-shrink: 0;
  display: flex;
  gap: 24px;
}

.header-bottom-rating {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.header-bottom-rating a {
  display: flex;
}

.header-bottom-rating img {
  max-height: 50px;
}

.header-toggle svg:last-child {
  display: none;
}

.site-inner {
  padding-top: 24px;
  padding-bottom: 24px;
}

.site-row {
  display: flex;
  gap: 32px;
}

.site-main {
  flex-grow: 1;
}

.site-page-content {
  line-height: 1.6;
}

.site-page-content a:not(.button) {
  color: #a772db;
  text-decoration: none;
}

.site-page-content a:not(.button):hover {
  text-decoration: underline;
}

.site-sidebar {
  flex-basis: 300px;
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  border: none;
  cursor: pointer;
  outline: none;
  border-radius: 200px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  background-color: #a58ada;
  box-sizing: border-box;
  padding: 2px 24px;
  text-decoration: none;
  line-height: 1.2;
  transition: 0.2s;
}

.menu .has-children {
  position: relative;
}

.menu .has-children:not(:hover) > .sub-menu {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  top: calc(100% + 16px);
}

.menu .menu-item-has-children {
  position: relative;
}

.menu .menu-item-has-children:not(:hover) > .sub-menu {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  top: calc(100% + 16px);
}

.menu .sub-menu {
  list-style: none;
  padding: 6px;
  border-radius: 12px;
  margin: 0;
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  width: 260px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  transition: 0.2s ease-in-out;
  z-index: 6;
}

.menu .sub-menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 11px;
  background-color: transparent;
  position: absolute;
  bottom: 100%;
  z-index: 1;
}

.menu .sub-menu a {
  padding: 8px 12px;
  display: block;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.menu .sub-menu a:hover {
  background-color: #f4f6fa;
  color: currentColor;
}

.menu .sub-menu .sub-menu {
  z-index: 10;
  left: calc(100% - 16px);
  top: -6px;
}

.menu .sub-menu .sub-menu:not(:hover) {
  top: -6px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  color: #222222;
}

.menu-list a {
  text-decoration: none;
  color: currentColor;
  transition: 0.2s;
}

.menu-list a:hover {
  color: #a58ada;
}

.main-slider {
  --swiper-pagination-bullet-size: 12px;
}

.main-slider-item {
  padding-top: 24px;
  padding-bottom: 24px;
}

.main-slider-row {
  display: flex;
  align-items: center;
}

.main-slider-col {
  flex-basis: 50%;
}

.main-slider-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.1;
}

.main-slider-title span {
  display: inline-block;
  box-sizing: border-box;
  background-color: #a58ada;
  font-size: 32px;
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
}

.main-slider-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.main-slider-list li {
  padding-left: 28px;
  position: relative;
}

.main-slider-list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: url(../images/list-check.svg) center/contain no-repeat;
}

.main-slider-list li:not(:last-child) {
  margin-bottom: 6px;
}

.main-slider-button {
  margin-top: 20px;
}

.main-slider-notice {
  margin-top: 10px;
}

.main-slider-image img {
  max-width: 100%;
  height: auto;
}

.section:not(:first-child) {
  margin-top: 70px;
}

.section:not(:last-child) {
  margin-bottom: 70px;
}

.section.section-bg {
  background-color: #f3f3f5;
  padding: 70px 0;
}

.section-header {
  margin-bottom: 24px;
}

.section-header .section-title {
  margin-top: 0;
  margin-bottom: 16px;
}

.section-title {
  margin-top: 0;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.section-title:not(:first-child) {
  margin-top: 40px;
}

.section-title span {
  color: #fdc400;
}

.section-row {
  display: flex;
  gap: 12px;
}

.section-col {
  flex-basis: 50%;
}

.section-buttons {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section-buttons.section-buttons-center {
  justify-content: center;
}

.section-phone-number {
  text-align: center;
  margin-bottom: 16px;
}

.section-phone-number a {
  display: inline-flex;
  padding: 2px 20px;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid #a58ada;
  text-decoration: none;
  color: currentColor;
  transition: 0.2s;
}

.section-phone-number a:hover {
  color: #a58ada;
}

.services {
  display: flex;
  gap: 16px;
}

.services-item {
  flex-basis: calc((100% - 32px) / 3);
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 24px;
  box-sizing: border-box;
  text-decoration: none;
  color: #a772db;
  line-height: 1.2;
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  transition: 0.4s;
}

.services-item:hover {
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.14);
}

.services-item-icon svg {
  width: 40px;
  height: 40px;
  display: block;
  color: #fdc400;
}

.services-item-text {
  font-size: 22px;
}

.feedback {
  background-color: #b0c8f8;
  padding: 32px 24px;
  border-radius: 10px;
  box-sizing: border-box;
  max-width: 460px;
}

.feedback-text {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
}

.feedback-form {
  margin-top: 24px;
}

.feedback-line {
  margin-bottom: 16px;
}

.feedback-line input {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  font-size: 16px;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none !important;
}

.feedback-submit .button {
  width: 100%;
}

.prices table {
  border-collapse: collapse;
}

.prices table th {
  padding: 10px;
  background-color: #f7f7f7;
  font-size: 18px;
}

.prices table td {
  padding: 10px;
}

.prices table td:nth-child(2) {
  white-space: nowrap;
  text-align: center;
}

.prices table td:nth-child(3) {
  white-space: nowrap;
  text-align: center;
}

.prices table tr:not(:last-child) td {
  border-bottom: 1px solid #e8e8e8;
}

.prices-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prices-list-item {
  border: 1px solid #a58ada;
  border-radius: 10px;
  padding: 18px 24px;
}

.prices-list-item:not(:last-child) {
  margin-bottom: 10px;
}

.prices-list-main {
  display: flex;
  gap: 10px;
  align-items: center;
}

.prices-list-icon {
  flex-shrink: 0;
}

.prices-list-icon img {
  width: 50px;
  height: 50px;
  display: block;
}

.prices-list-text {
  font-size: 16px;
  flex-grow: 1;
}

.prices-list-value {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}

.prices-table-head {
  background-color: #f7f7f7;
  font-size: 16px;
  font-weight: 700;
}

.prices-table-row {
  display: flex;
  align-items: stretch;
}

.prices-table-row:not(:last-child) .prices-table-col {
  border-bottom: 1px solid #e8e8e8;
}

.prices-table-col {
  flex-basis: 22%;
  padding: 16px;
  box-sizing: border-box;
  text-align: center;
}

.prices-table-col span {
  display: none;
}

.prices-table-col:nth-child(1) {
  flex-grow: 1;
  text-align: left;
}

.steps {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.steps-item {
  flex-basis: calc((100% - 120px) / 4);
  text-align: center;
  color: #222222;
}

.steps-item.current .steps-icon {
  border-color: #fdc400;
}

.steps-item:hover .steps-icon {
  border-color: #fdc400;
}

.steps-icon {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 128px;
  height: 128px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-bottom: 16px;
}

.steps-icon img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.steps-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.tariffs {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.tariffs-item {
  flex-basis: calc((100% - 48px) / 3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
}

.tariffs-item.tariffs-item-highlighted {
  background-color: #fff;
  border: 2px solid #fdc400;
}

.tariffs-item.tariffs-item-highlighted .tariffs-name {
  color: #fff;
  background-color: #fdc400;
}

.tariffs-top {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 26px;
  color: #393939;
}

.tariffs-top svg {
  width: 24px;
  height: 24px;
}

.tariffs-name {
  text-align: center;
  background-color: rgb(86, 86, 86);
  padding: 24px 8px;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
}

.tariffs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: center;
  flex-grow: 1;
  font-size: 14px;
}

.tariffs-list li {
  padding: 16px;
}

.tariffs-list li:not(:last-child) {
  border-bottom: 1px solid #e9e9e9;
}

.tariffs-price {
  text-align: center;
  font-weight: 400;
  font-size: 50px;
}

.tariffs-button {
  margin-top: 16px;
  padding-bottom: 24px;
  text-align: center;
}

.tariffs-button .button {
  min-width: 180px;
  background-color: #444444;
}

.tariffs-button .button:hover {
  background-color: #fdc400;
}

.reviews-top {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.reviews-top-item {
  flex-basis: calc((100% - 72px) / 4);
  text-align: center;
  box-shadow: 0 15px 55px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  display: block;
}

.reviews-top-image {
  position: relative;
  padding-bottom: 30%;
  background-color: #fff;
  display: block;
}

.reviews-top-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.reviews-top-text {
  font-size: 18px;
  margin-top: 6px;
}

.reviews-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.reviews-item {
  flex-basis: calc((100% - 64px) / 3);
  background-color: #fff;
  padding: 40px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 15px 55px 5px rgba(0, 0, 0, 0.1);
}

.reviews-item::after {
  content: "";
  width: 50px;
  height: 50px;
  top: -12px;
  right: 24px;
  background: url(../images/quote.svg) center/contain no-repeat;
  position: absolute;
  display: block;
}

.reviews-title {
  font-size: 18px;
  color: #2a2a2a;
}

.reviews-rating img {
  max-width: 60px;
  width: 100%;
}

.reviews-body {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.3;
}

.reviews-author {
  margin-top: 16px;
  color: #a58ada;
  font-style: italic;
  font-weight: 700;
}

.reviews-author::before {
  content: "– ";
}

.blog-slider .swiper {
  padding-bottom: 40px;
}

.blog-slider .swiper-slide {
  height: auto;
}

.blog-slider-item {
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-slider-image {
  padding-bottom: 66%;
  position: relative;
  display: block;
}

.blog-slider-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-slider-content {
  padding: 24px;
  box-sizing: border-box;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-slider-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-slider-title a {
  text-decoration: none;
  color: currentColor;
}

.blog-slider-excerpt {
  flex-grow: 1;
}

.blog-slider-button {
  margin-top: 16px;
}

.blog-slider-button .button {
  height: 36px;
}

.breadcrubs {
  margin-top: 16px;
  margin-bottom: 8px;
}

.breadcrubs a {
  color: currentColor;
  text-decoration: none;
}

.breadcrubs a:hover {
  text-decoration: underline;
}

.sidebar-block {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.sidebar-block:not(:last-child) {
  margin-bottom: 24px;
}

.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav-list li {
  padding: 10px 16px;
}

.sidebar-nav-list li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.sidebar-nav-list a {
  color: currentColor;
  text-decoration: none;
  transition: 0.2s;
}

.sidebar-nav-list a:hover {
  color: #fdc400;
}

.sidebar-contacts {
  padding: 16px;
  box-sizing: border-box;
}

.sidebar-contacts-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.sidebar-contacts-item {
  display: flex;
  gap: 8px;
}

.sidebar-contacts-item:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar-contacts-icon {
  color: #a58ada;
}

.sidebar-contacts-icon svg {
  width: 16px;
  height: 16px;
}

.sidebar-contacts-title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.sidebar-contacts-text p {
  margin: 0;
}

.sidebar-contacts-text a {
  color: currentColor;
  text-decoration: none;
  transition: 0.2s;
}

.sidebar-contacts-text a:hover {
  color: #fdc400;
}

.sidebar-buttons {
  margin-bottom: 24px;
}

.sidebar-buttons-item:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar-buttons-item .button {
  width: 100%;
}

.off-canvas {
  position: fixed;
  top: 70px;
  right: 0;
  width: 100%;
  max-width: 340px;
  z-index: 10;
  background-color: #fff;
  padding: 32px;
  height: calc(100dvh - 70px);
  box-sizing: border-box;
  overflow-y: auto;
  transition: 0.3s;
  transform: translateX(100%);
}

.off-canvas-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.off-canvas-menu-list li:not(:last-child) {
  margin-bottom: 32px;
}

.off-canvas-menu-list a {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: currentColor;
  text-decoration: none;
}

.off-canvas-menu-list .sub-menu {
  display: none;
  list-style: none;
  padding-left: 16px;
  padding-top: 16px;
}

.off-canvas-menu-list .sub-menu a {
  text-transform: none;
  font-size: 14px;
}

.off-canvas-menu-list .sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}

.off-canvas-menu-list .has-children:not(.active) .off-canvas-menu-toggle {
  transform: rotate(180deg);
}
.off-canvas-menu-list .menu-item-has-children:not(.active) .off-canvas-menu-toggle {
  transform: rotate(180deg);
}

.off-canvas-menu-item {
  display: flex;
  align-items: center;
}

.off-canvas-menu-item a {
  flex-grow: 1;
}

.off-canvas-menu-toggle {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  flex-shrink: 0;
  padding: 0;
}

.off-canvas-menu-toggle svg {
  transform: rotate(-90deg);
  width: 24px;
  height: 24px;
}

.tabs {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  margin: 1em 0;
}

.tabs-nav {
  display: flex;
  border-bottom: 3px solid #4b4b4b;
}

.tabs-nav-button {
  flex-basis: 50%;
  display: flex;
  gap: 8px;
  padding: 24px 16px;
  box-sizing: border-box;
  transition: 0.2s;
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-align: left;
}

.tabs-nav-button:hover {
  background-color: #eee;
}

.tabs-nav-button.active {
  background-color: #fdc400;
  color: #fff;
}

.tabs-nav-icon {
  display: flex;
  flex-shrink: 0;
}

.tabs-nav-icon svg {
  width: 48px;
  height: 48px;
}

.tabs-nav-content {
  flex-grow: 1;
}

.tabs-nav-title {
  font-size: 22px;
}

.tabs-nav-text {
  font-size: 14px;
}

.tabs-content-item:not(.active) {
  display: none;
}

.contacts {
  margin: 2em 0;
}

.contacts-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.contacts-col {
  flex-basis: calc((100% - 72px) / 4);
}

.contacts-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacts-item a {
  text-decoration: none;
  color: currentColor;
}

.contacts-item:not(:last-child) {
  margin-bottom: 8px;
}

.contacts-icon {
  display: flex;
  flex-shrink: 0;
  color: #a772db;
}

.contacts-icon svg {
  width: 32px;
  height: 32px;
}

.contacts-icon img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal {
  max-width: 440px;
  border-radius: 16px;
}

.modal .feedback-line input {
  border: 1px solid #000;
}

.modal-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.footer {
  background: url(../images/footer-bg.jpg) center/cover no-repeat;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  text-transform: uppercase;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav-list a {
  color: currentColor;
  text-decoration: none;
  transition: 0.2s;
}

.footer-nav-list a:hover {
  color: #a58ada;
}

.footer-socials {
  margin-top: 24px;
}

.socials {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.socials-item {
  display: flex;
  color: #fff;
  transition: 0.2s;
}

.socials-item:hover {
  color: #a58ada;
}

.socials-item svg {
  width: 32px;
  height: 32px;
  display: block;
}

.footer-contacts {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-wrap: wrap;
}

.footer-contacts-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fdc400;
  transition: 0.2s;
}

.footer-contacts-item:hover {
  text-decoration: underline;
}

.footer-contacts-item svg {
  width: 32px;
  height: 32px;
  display: block;
}

.footer-contacts-item img {
  width: 32px;
  height: 32px;
  display: block;
}

.footer-info {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.footer-info-item {
  display: flex;
  gap: 8px;
}

.footer-info-item svg {
  width: 32px;
  height: 32px;
  display: block;
  transform: translateY(-4px);
}

.footer-info-item a {
  color: currentColor;
  text-decoration: none;
}

.footer-info-item a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .section.has-wide-image {
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
  }

  .section.has-wide-image img.wide {
    position: absolute;
    left: 0;
    width: calc(100vw - 50%);
    top: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top right;
       object-position: top right;
  }

  .section.has-wide-image .section-col-padding {
    padding-left: 40px;
    box-sizing: border-box;
  }
}

@media (min-width: 1024px) {
  .desktop-hidden {
    display: none !important;
  }

  .header-main-buttons {
    display: none;
  }

  .header-button {
    display: none;
  }

  .button:hover {
    background-color: #8365bf;
  }

  .off-canvas {
    display: none;
  }
}

@media (max-width: 1200px) {
  .tariffs-name {
    font-size: 22px;
  }
}

@media (max-width: 1023.98px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.14);
    z-index: 10;
  }

  .header-main-inner {
    align-items: center;
    justify-content: space-between;
  }

  .header-logo {
    flex-basis: auto;
  }

  .header-logo-link img {
    max-height: 50px;
  }

  .header-main-row {
    display: none;
  }

  .header-bottom {
    display: none;
  }

  .site-row {
    display: block;
  }

  .site-sidebar {
    margin-top: 24px;
  }

  .main-slider-title {
    font-size: 26px;
  }

  .main-slider-title span {
    font-size: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .services-item-text {
    font-size: 18px;
  }

  .steps-item {
    flex-basis: calc((100% - 40px) / 2);
  }

  .tariffs-top {
    font-size: 18px;
  }

  .tariffs-name {
    font-size: 16px;
  }

  .tariffs-price {
    font-size: 40px;
  }

  .reviews-row {
    gap: 12px;
  }

  .reviews-item::after {
    top: -6px;
  }

  .reviews-item {
    flex-basis: calc((100% - 12px) / 2);
  }

  .contacts-col {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767.98px) {
  .mobile-hidden {
    display: none !important;
  }

  .header-main-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .main-slider {
    padding-top: 32px;
  }

  .main-slider .swiper-button-next {
    display: none;
  }

  .main-slider .swiper-button-prev {
    display: none;
  }

  .main-slider .swiper {
    padding-bottom: 24px;
  }

  .main-slider-row {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    text-align: center;
  }

  .section-row {
    display: block;
  }

  .section-col:not(:last-child) {
    margin-bottom: 32px;
  }

  .section.has-wide-image .section-title {
    text-align: left;
  }

  .section.has-wide-image .section-col img {
    max-width: 100%;
  }

  .services {
    display: block;
  }

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

  .feedback {
    margin-left: auto;
    margin-right: auto;
  }

  .prices table th {
    font-size: 16px;
  }

  .prices table td {
    font-size: 14px;
  }

  .prices-list-item {
    padding: 16px;
  }

  .prices-list-icon img {
    width: 40px;
    height: 40px;
  }

  .prices-list-text {
    font-size: 14px;
  }

  .prices-list-value {
    font-size: 18px;
  }

  .prices-table-head {
    display: none;
  }

  .prices-table-row {
    flex-wrap: wrap;
  }

  .prices-table-col:nth-child(1) {
    border-bottom: none !important;
  }

  .prices-table-col:nth-child(2) {
    border-bottom: none !important;
  }

  .prices-table-col {
    flex-basis: 100%;
    text-align: left;
  }

  .prices-table-col span {
    display: inline;
  }

  .steps-item {
    flex-basis: 100%;
  }

  .steps-title {
    font-size: 18px;
  }

  .tariffs {
    flex-direction: column;
    align-items: center;
  }

  .tariffs-item {
    flex-basis: auto;
  }

  .reviews-top {
    display: block;
  }

  .reviews-top-item {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .reviews-top-item:not(:last-child) {
    margin-bottom: 16px;
  }

  .reviews-item {
    flex-basis: 100%;
  }

  .tabs-nav-button {
    flex-direction: column;
    align-items: center;
  }

  .tabs-nav-icon svg {
    width: 32px;
    height: 32px;
  }

  .tabs-nav-title {
    font-size: 12px;
    text-align: center;
  }

  .tabs-nav-text {
    display: none;
  }

  .contacts-col {
    flex-basis: 100%;
  }

  .contacts-item:not(:last-child) {
    margin-bottom: 24px;
  }

  .modal {
    padding: 32px 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .tablet-hidden {
    display: none !important;
  }
}