@charset "UTF-8";
.up-panel {
  background: linear-gradient(135deg, #30373E 0%, #2a3036 100%);
  color: #b0b6bc;
  font-size: 14px;
  border-bottom: 1px solid #3a424a;
  padding: 8px 0;
}
.up-panel .container {
  position: relative;
}
.up-panel .social {
  padding: 5px 0;
}
.up-panel .social .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #b0b6bc;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}
.up-panel .social .social-link:hover {
  color: #ffffff;
  background: #B61324;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(182, 19, 36, 0.3);
}
.up-panel .social .social-link .social-text {
  font-size: 13px;
  font-weight: 500;
}
.up-panel .social .social-link .icon-vkontakte {
  font-size: 20px;
}
.up-panel .meta {
  gap: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.up-panel .meta .meta-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #b0b6bc;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.up-panel .meta .meta-link:hover {
  color: #ffffff;
  background: rgba(182, 19, 36, 0.1);
  border-color: rgba(182, 19, 36, 0.3);
}
.up-panel .meta .meta-link:hover .icon-mail-squared,
.up-panel .meta .meta-link:hover .icon-phone-squared {
  color: #B61324;
  transform: scale(1.1);
}
.up-panel .meta .meta-link .meta-text {
  font-weight: 500;
}
.up-panel .meta .meta-link .phone-text {
  white-space: nowrap;
}
.up-panel .meta .meta-link .icon-mail-squared,
.up-panel .meta .meta-link .icon-phone-squared {
  transition: all 0.3s ease;
  font-size: 16px;
}
.up-panel .call .btn-call {
  background: linear-gradient(135deg, #B61324 0%, #d0182c 100%);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(182, 19, 36, 0.3);
}
.up-panel .call .btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(182, 19, 36, 0.4);
  background: linear-gradient(135deg, #d0182c 0%, #B61324 100%);
}
.up-panel .call .btn-call:active {
  transform: translateY(0);
}
@media (min-width: 1200px) {
  .up-panel .meta {
    gap: 20px;
  }
  .up-panel .social .social-link {
    padding: 10px 20px;
  }
}
@media (max-width: 1300px) {
  .up-panel .meta .meta-link {
    padding: 6px 10px;
    gap: 6px;
  }
  .up-panel .meta .meta-link .phone-text {
    font-size: 13px;
  }
  .up-panel .call .btn-call {
    padding: 8px 12px;
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .up-panel .meta {
    gap: 10px;
  }
  .up-panel .meta .meta-link .meta-text {
    font-size: 12px;
  }
  .up-panel .meta .meta-link .phone-text {
    font-size: 12px;
  }
}

.header {
  padding: 40px;
}
.header .menu-toggler {
  color: #30373E;
  font-size: 32px;
}

.main-nav {
  background-color: #ffffff;
}
.main-nav .nav {
  align-items: center;
}
.main-nav .nav-item {
  margin: 0 0.25rem;
}
.main-nav .nav-item:last-child {
  margin-right: 0;
}
.main-nav .nav-link {
  color: #30373E;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}
.main-nav .nav-link:hover {
  color: #B61324;
  background-color: rgba(182, 19, 36, 0.05);
  transform: translateY(-1px);
}
.main-nav .nav-link.active {
  color: #B61324;
  background-color: rgba(182, 19, 36, 0.1);
  font-weight: 600;
}
.main-nav .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #B61324;
}
.main-nav .nav-link.dropdown-toggle::after {
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}
.main-nav .nav-link.show::after {
  transform: rotate(-180deg);
}
.main-nav .dropdown-menu {
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  min-width: 200px;
}
.main-nav .dropdown-menu .dropdown-item {
  color: #30373E;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.main-nav .dropdown-menu .dropdown-item:hover {
  color: #B61324;
  background-color: rgba(182, 19, 36, 0.05);
  padding-left: 2rem;
}
.main-nav .dropdown-menu .dropdown-item:hover::before {
  content: "→";
  position: absolute;
  left: 1rem;
  color: #B61324;
}
.main-nav .dropdown-menu .dropdown-item:active {
  background-color: rgba(182, 19, 36, 0.1);
  color: #B61324;
}
.main-nav .dropdown-menu.show {
  display: block;
}

@media (max-width: 991.98px) {
  .main-nav .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
.offcanvas-menu {
  background-color: #ffffff;
  padding: 0;
}
.offcanvas-menu .dropdown-toggle::after {
  display: none !important;
}
.offcanvas-menu .offcanvas-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 1.5rem 2rem 1rem;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.offcanvas-menu .offcanvas-header .offcanvas-title {
  color: #30373E;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
  flex: 1;
}
.offcanvas-menu .offcanvas-header .btn-close-custom {
  border: none;
  background: rgba(48, 55, 62, 0.1);
  font-size: 1.5rem;
  padding: 0.75rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  flex-shrink: 0;
}
.offcanvas-menu .offcanvas-header .btn-close-custom:hover {
  background: rgba(182, 19, 36, 0.1);
  transform: scale(1.05);
}
.offcanvas-menu .offcanvas-header .btn-close-custom .close-icon {
  color: #30373E;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}
.offcanvas-menu .offcanvas-header .btn-close-custom:hover .close-icon {
  color: #B61324;
  transform: scale(1.1);
}
.offcanvas-menu .offcanvas-body {
  padding: 0;
}

.navbar-nav {
  padding: 1rem 0;
  width: 100%;
}
.navbar-nav .nav-item {
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.navbar-nav .nav-item:last-child {
  border-bottom: none;
}
.navbar-nav .nav-item.dropdown .dropdown-menu {
  position: static !important;
  transform: none !important;
  float: none;
  width: 100%;
  margin: 0;
  background-color: #fafafa;
}
.navbar-nav .menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: #30373E;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  width: 100%;
  position: relative;
}
.navbar-nav .menu-link .menu-text {
  font-weight: 500;
  font-size: 1rem;
  flex: 1;
}
.navbar-nav .menu-link .dropdown-arrow {
  color: #a0a0a0;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  font-weight: 300;
  line-height: 1;
}
.navbar-nav .menu-link:hover {
  background-color: rgba(182, 19, 36, 0.08);
  color: #B61324;
}
.navbar-nav .menu-link:hover .dropdown-arrow {
  color: #B61324;
  transform: translateX(3px);
}
.navbar-nav .menu-link.active {
  color: #B61324;
  background-color: rgba(182, 19, 36, 0.08);
  font-weight: 600;
}
.navbar-nav .menu-link[aria-expanded=true] .dropdown-arrow {
  transform: rotate(90deg);
  color: #B61324;
}

.dropdown-menu {
  border: none;
  border-radius: 0;
  background-color: #fafafa;
  box-shadow: none;
  padding: 0;
  margin: 0;
  min-width: auto !important;
}
.dropdown-menu .dropdown-item-wrapper {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
.dropdown-menu .dropdown-item-wrapper:last-child {
  border-bottom: none;
}
.dropdown-menu .submenu-link {
  padding: 0.875rem 1.5rem 0.875rem 3rem;
  color: #30373E;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  font-size: 0.95rem;
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  position: relative;
}
.dropdown-menu .submenu-link::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.dropdown-menu .submenu-link:hover {
  background-color: rgba(182, 19, 36, 0.08);
  color: #B61324;
  border-left-color: #B61324;
  padding-left: 3.5rem;
}
.dropdown-menu .submenu-link:hover::before {
  background: #B61324;
  transform: translateY(-50%) scale(1.2);
}
.dropdown-menu .submenu-link:active {
  background-color: rgba(182, 19, 36, 0.12);
  color: #B61324;
}

.offcanvas-footer {
  padding: 1.5rem;
  background-color: #fafafa;
  border-top: 1px solid #f0f0f0;
}
.offcanvas-footer .contact-info {
  margin-bottom: 1.5rem;
}
.offcanvas-footer .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.offcanvas-footer .contact-info .contact-item:last-child {
  margin-bottom: 0;
}
.offcanvas-footer .contact-info .contact-item:hover {
  background-color: rgba(182, 19, 36, 0.05);
}
.offcanvas-footer .contact-info .contact-item .contact-icon {
  margin-right: 0.75rem;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  opacity: 0.8;
}
.offcanvas-footer .contact-info .contact-item .contact-link {
  color: #30373E;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}
.offcanvas-footer .contact-info .contact-item .contact-link:hover {
  color: #B61324;
}
.offcanvas-footer .btn-call {
  background-color: #B61324;
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 100%;
}
.offcanvas-footer .btn-call:hover {
  background-color: #9a0f1e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(182, 19, 36, 0.3);
}
.offcanvas-footer .btn-call:active {
  transform: translateY(0);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.offcanvas-end {
  animation: slideInRight 0.3s ease-out;
}

@media (max-width: 576px) {
  .offcanvas-menu .navbar-nav .menu-link {
    padding: 1.25rem 1.5rem;
  }
  .offcanvas-menu .navbar-nav .menu-link .menu-text {
    font-size: 1.1rem;
  }
  .offcanvas-menu .offcanvas-footer {
    padding: 2rem 1.5rem;
  }
  .offcanvas-menu .offcanvas-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  .offcanvas-menu .offcanvas-header .btn-close-custom {
    width: 40px;
    height: 40px;
    padding: 0.65rem;
  }
}
.offcanvas-menu .btn-close-custom:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(182, 19, 36, 0.3);
}
.offcanvas-menu .menu-link:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(182, 19, 36, 0.3);
}
.offcanvas-menu .btn-call:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(182, 19, 36, 0.5);
}

.offcanvas-menu * {
  transition-timing-function: ease;
}

.tns-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  gap: 5px;
}
.tns-nav button {
  background-color: #eeeeee;
  border: 0;
  border-radius: 4px;
  min-height: 12px;
  min-width: 32px;
}
.tns-nav .tns-nav-active {
  background-color: #B61324;
}

.call-order-panel-modal {
  background: #FFFFFF;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(48, 55, 62, 0.2);
}
.call-order-panel-modal .call-order-panel-header {
  border-bottom: 1px solid rgba(48, 55, 62, 0.1);
  padding: 20px 24px 16px;
}
.call-order-panel-modal .call-order-panel-header .call-order-panel-title {
  color: #30373E;
  font-weight: 600;
  font-size: 18px;
}
.call-order-panel-modal .call-order-panel-header .call-order-panel-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2330373E'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.call-order-panel-modal .call-order-panel-header .call-order-panel-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.call-order-panel-modal .call-order-panel-body {
  padding: 24px;
}
.call-order-panel-modal .call-order-panel-label {
  color: #30373E;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}
.call-order-panel-modal .call-order-panel-input {
  background: #FFFFFF;
  border: 1px solid rgba(48, 55, 62, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #30373E;
  font-size: 14px;
  transition: all 0.3s ease;
}
.call-order-panel-modal .call-order-panel-input:focus {
  border-color: #B51324;
  box-shadow: 0 0 0 0.2rem rgba(181, 19, 36, 0.15);
  background: #FFFFFF;
}
.call-order-panel-modal .call-order-panel-input::-moz-placeholder {
  color: rgba(48, 55, 62, 0.5);
}
.call-order-panel-modal .call-order-panel-input::placeholder {
  color: rgba(48, 55, 62, 0.5);
}
.call-order-panel-modal .call-order-panel-input.call-order-panel-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4'/%3e%3cpath d='M6 7v2.5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.call-order-panel-modal .call-order-panel-input.call-order-panel-valid {
  border-color: #28a745;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.call-order-panel-modal .call-order-panel-error {
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
}
.call-order-panel-modal .call-order-panel-submit {
  background: linear-gradient(135deg, #B51324 0%, #d0182c 100%);
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.call-order-panel-modal .call-order-panel-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 19, 36, 0.4);
  background: linear-gradient(135deg, #d0182c 0%, #B51324 100%);
}
.call-order-panel-modal .call-order-panel-submit:active {
  transform: translateY(0);
}
.call-order-panel-modal .call-order-panel-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.call-order-panel-modal .call-order-panel-submit .call-order-panel-spinner {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

.call-order-panel-success {
  text-align: center;
  padding: 40px 20px;
}
.call-order-panel-success .call-order-panel-success-icon {
  font-size: 48px;
  color: #28a745;
  margin-bottom: 20px;
}
.call-order-panel-success .call-order-panel-success-title {
  color: #30373E;
  font-weight: 600;
  margin-bottom: 10px;
}
.call-order-panel-success .call-order-panel-success-text {
  color: rgba(48, 55, 62, 0.8);
  font-size: 14px;
}

#callOrderPanelModal.modal.fade .modal-dialog {
  transform: translateY(-50px) scale(0.95);
  transition: all 0.3s ease;
}

#callOrderPanelModal.modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}

.page-block {
  margin-bottom: 20px;
}
.page-block .page-title {
  margin-bottom: 20px;
}
.page-block .page-title h1 {
  color: #30373E;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  position: relative;
  padding-bottom: 1rem;
}
.page-block .page-title h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #B51324, #d42a3e);
  border-radius: 2px;
}
.page-block .page-title h2 {
  font-size: 18px;
  padding-left: 2px;
  margin-bottom: 0;
}
.page-block .page-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
.page-block .page-text img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-block .page-text img:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.page-block .page-text .footnote {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-left: 4px solid #B51324;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.page-block .page-text .footnote strong {
  color: #B51324;
  font-weight: 600;
}
.page-block .page-text h3 {
  color: #30373E;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f0;
}
.page-block .page-text h4 {
  color: #B51324;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}
.page-block .page-text ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  list-style: none;
}
.page-block .page-text ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1rem;
}
.page-block .page-text ul li::before {
  content: "•";
  color: #B51324;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.page-block .page-text ul li strong {
  color: #30373E;
  font-weight: 600;
}
.page-block .page-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
}
.page-block .page-text p:not(.footnote) {
  color: #555;
}
.page-block .page-text strong:not(.footnote strong) {
  background: linear-gradient(120deg, #B51324 0%, #d42a3e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.page-block .page-text a {
  color: #B51324;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.page-block .page-text a:hover {
  border-bottom-color: #B51324;
}
.page-block .page-text .contact-simple h3 {
  color: #B51324;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.page-block .page-text .contact-simple p {
  margin-bottom: 0.75rem;
}
.page-block .page-text .contact-simple p strong {
  color: #30373E;
  font-weight: 600;
}
.page-block .page-text .contact-simple .work-note {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1.5rem;
  text-align: center;
  color: #666;
  font-style: italic;
  border-left: 3px solid #B51324;
}
.page-block .page-text .intro {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #B51324;
}
.page-block .page-text .conclusion {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  margin: 2rem 0;
  border: 1px solid #e9ecef;
}
.page-block .page-text .conclusion strong {
  color: #B51324;
  font-size: 1.1rem;
}
.page-block .page-sidebar .lbl {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .page-block .page-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .page-block .page-text img {
    margin: 1.5rem 0;
    border-radius: 6px;
  }
  .page-block .page-text .footnote {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  .page-block .page-text h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
  }
  .page-block .page-text h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
  }
  .page-block .page-text ul {
    margin: 1rem 0;
    padding-left: 1rem;
  }
  .page-block .page-text ul li {
    margin-bottom: 0.5rem;
    padding-left: 0.75rem;
  }
}
.custom-footer {
  background-color: #30373E;
  color: #ffffff;
  padding: 50px 0 20px;
  position: relative;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}
.custom-footer .footer-main {
  margin-bottom: 30px;
}
.custom-footer .footer-brand-section .footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.custom-footer .footer-brand-section .company-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.custom-footer .footer-brand-section .legal-info .legal-item {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.custom-footer .footer-brand-section .legal-info .legal-item strong {
  color: #ffffff;
  font-weight: 600;
}
.custom-footer .footer-brand-section .legal-info .legal-item:last-child {
  margin-bottom: 0;
}
.custom-footer .section-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
.custom-footer .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #B51324;
}
.custom-footer .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.custom-footer .contact-section .contact-info .contact-item:last-child {
  margin-bottom: 0;
}
.custom-footer .contact-section .contact-info .contact-item .contact-icon {
  color: #B51324;
  margin-right: 12px;
  margin-top: 2px;
  width: 16px;
  text-align: center;
}
.custom-footer .contact-section .contact-info .contact-item .contact-icon i {
  font-size: 18px;
}
.custom-footer .contact-section .contact-info .contact-item .contact-text {
  flex: 1;
  display: flex;
  justify-content: left;
  align-items: center;
}
.custom-footer .contact-section .contact-info .contact-item .contact-text span, .custom-footer .contact-section .contact-info .contact-item .contact-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  line-height: 1.4;
}
.custom-footer .contact-section .contact-info .contact-item .contact-text a:hover {
  color: #B51324;
}
.custom-footer .hours-section .working-hours {
  margin-bottom: 20px;
}
.custom-footer .hours-section .working-hours .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-footer .hours-section .working-hours .hours-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.custom-footer .hours-section .working-hours .hours-item .days {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.custom-footer .hours-section .working-hours .hours-item .hours {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}
.custom-footer .hours-section .callback-info {
  display: flex;
  align-items: center;
  background-color: rgba(181, 19, 36, 0.1);
  padding: 12px 15px;
  border-radius: 8px;
  border-left: 3px solid #B51324;
}
.custom-footer .hours-section .callback-info i {
  color: #B51324;
  margin-right: 10px;
  font-size: 1rem;
}
.custom-footer .hours-section .callback-info span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}
.custom-footer .footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(181, 19, 36, 0.3) 50%, transparent 100%);
  margin: 30px 0;
}
.custom-footer .footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}
.custom-footer .footer-bottom .footer-links {
  text-align: right;
}
.custom-footer .footer-bottom .footer-links .privacy-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}
.custom-footer .footer-bottom .footer-links .privacy-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #B51324;
  transition: width 0.3s ease;
}
.custom-footer .footer-bottom .footer-links .privacy-link:hover {
  color: #B51324;
}
.custom-footer .footer-bottom .footer-links .privacy-link:hover::after {
  width: 100%;
}
.custom-footer .scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #B51324;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-footer .scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.custom-footer .scroll-to-top:hover {
  background-color: rgb(134.845, 14.155, 26.82);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(181, 19, 36, 0.3);
}
.custom-footer .scroll-to-top i {
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .custom-footer {
    padding: 40px 0 20px;
  }
  .custom-footer .footer-brand-section {
    text-align: center;
    margin-bottom: 30px;
  }
  .custom-footer .footer-brand-section .footer-logo {
    margin: 0 auto 20px;
  }
  .custom-footer .section-title {
    text-align: center;
  }
  .custom-footer .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .custom-footer .contact-section .contact-info .contact-item {
    justify-content: center;
    text-align: center;
  }
  .custom-footer .contact-section .contact-info .contact-item .contact-icon {
    margin-right: 8px;
  }
  .custom-footer .hours-section .working-hours .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}
@media (max-width: 767.98px) {
  .custom-footer .footer-bottom {
    text-align: center;
  }
  .custom-footer .footer-bottom .footer-links {
    text-align: center;
    margin-top: 15px;
  }
  .custom-footer .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 575.98px) {
  .custom-footer {
    padding: 30px 0 15px;
  }
  .custom-footer .footer-brand-section .footer-logo {
    width: 150px;
  }
  .custom-footer .section-title {
    font-size: 1.1rem;
  }
  .custom-footer .callback-info {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .custom-footer .callback-info i {
    margin-right: 0;
  }
}/*# sourceMappingURL=page.css.map */