@charset "UTF-8";
@font-face {
  font-family: "NorseRegular"; /* Имя шрифта */
  src: url("http://ns.local/assets/fonts/Norse-Bold.ttf"); /* Путь к файлу со шрифтом */
}
.main-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E7E3DA;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  min-height: 120px;
}
.main-header .logo-wrapper {
  flex-shrink: 0;
}
.main-header .logo-wrapper .logo-link {
  display: block;
  line-height: 0;
}
.main-header .logo-wrapper .logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 350px;
  max-height: 200px;
  min-width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-header .contact-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}
.main-header .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background-color: #F8F7F4;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.main-header .contact-info .contact-item:hover {
  background-color: #F3F1EA;
  transform: translateY(-2px);
}
.main-header .contact-info .contact-item i {
  font-size: 1.4rem;
  color: #4B5240;
}
.main-header .contact-info .contact-item div {
  display: flex;
  flex-direction: column;
}
.main-header .contact-info .contact-item .contact-label {
  font-size: 0.7rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-header .contact-info .contact-item .contact-value {
  font-size: 0.95rem;
  color: #1D1D1B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.main-header .contact-info .contact-item .contact-value:hover {
  color: #4B5240;
}
.main-header .contact-info .btn-call {
  display: flex;
  align-items: center;
  background-color: #4B5240;
  border: none;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(75, 82, 64, 0.2);
}
.main-header .contact-info .btn-call i {
  font-size: 1rem;
}
.main-header .contact-info .btn-call:hover {
  background-color: #3a4032;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(75, 82, 64, 0.3);
}
.main-header .contact-info .btn-call:active {
  transform: translateY(0);
}
.main-header .mobile-menu-btn {
  background: linear-gradient(135deg, #4B5240 0%, #3a4032 100%);
  border: none;
  color: #FFFFFF;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.main-header .mobile-menu-btn i {
  font-size: 1.5rem;
}
.main-header .mobile-menu-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.main-header .mobile-menu-btn:active {
  transform: scale(0.95);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main-header .header-top {
    padding: 20px 0;
    min-height: 100px;
  }
  .main-header .logo-img {
    max-width: 260px;
    max-height: 75px;
    min-width: 200px;
  }
  .main-header .contact-info {
    gap: 15px;
  }
  .main-header .contact-info .contact-item {
    padding: 6px 12px;
  }
  .main-header .contact-info .contact-item i {
    font-size: 1.2rem;
  }
  .main-header .contact-info .contact-item .contact-value {
    font-size: 0.85rem;
  }
  .main-header .contact-info .btn-call {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .main-header .header-top {
    padding: 15px 0;
    min-height: 80px;
  }
  .main-header .logo-img {
    max-width: 200px;
    max-height: 60px;
    min-width: 160px;
  }
  .main-header .mobile-menu-btn {
    width: 48px;
    height: 48px;
  }
  .main-header .mobile-menu-btn i {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .main-header .logo-img {
    max-width: 170px;
    max-height: 55px;
    min-width: 140px;
  }
  .main-header .mobile-menu-btn {
    width: 44px;
    height: 44px;
  }
}

.desktop-nav {
  background-color: #FFFFFF;
  border-top: 2px solid #F3F1EA;
  padding: 20px 0;
}
.desktop-nav .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.desktop-nav .nav-item {
  position: relative;
}
.desktop-nav .nav-link {
  display: inline-block;
  padding: 12px 24px;
  color: #1D1D1B;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.2s ease;
}
.desktop-nav .nav-link:hover {
  background-color: #F3F1EA;
  color: #1D1D1B;
}
.desktop-nav .nav-link.active {
  background-color: #4B5240;
  color: #FFFFFF;
}
.desktop-nav .nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  content: "";
  border-top: 5px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.desktop-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #FFFFFF;
  border: 1px solid #E7E3DA;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  margin-top: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
}
.desktop-nav .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 14px;
  height: 14px;
  background-color: #FFFFFF;
  border-top: 1px solid #E7E3DA;
  border-left: 1px solid #E7E3DA;
  transform: rotate(45deg);
}
.desktop-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.desktop-nav .dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #1D1D1B;
  text-decoration: none;
  transition: all 0.15s ease;
  font-size: 0.95rem;
}
.desktop-nav .dropdown-item:hover {
  background-color: #F3F1EA;
  color: #1D1D1B;
}
.desktop-nav .dropdown-item.active {
  background-color: #4B5240;
  color: #FFFFFF;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .desktop-nav {
    padding: 15px 0;
  }
  .desktop-nav .nav-link {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
  .desktop-nav .nav-list {
    gap: 8px;
  }
}
.offcanvas {
  background-color: #FFFFFF;
}
.offcanvas .dropdown .dropdown-menu {
  position: static !important;
  transform: none !important;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  width: 100%;
}
.offcanvas .dropdown .dropdown-item {
  padding: 8px 16px 8px 32px;
  font-size: 0.9rem;
  border-radius: 10px;
  margin: 2px 0;
}
.offcanvas .dropdown .dropdown-item:hover {
  background-color: #F3F1EA;
}
.offcanvas .dropdown .dropdown-item.active {
  background-color: #4B5240;
  color: #FFFFFF;
}
.offcanvas.offcanvas-start {
  width: 320px;
}
.offcanvas .offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid #E7E3DA;
}
.offcanvas .offcanvas-header .offcanvas-logo img {
  height: 45px;
  width: auto;
}
.offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
}
.offcanvas .offcanvas-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.offcanvas .mobile-nav {
  flex: 1;
  margin-bottom: 20px;
}
.offcanvas .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offcanvas .mobile-nav-item {
  margin-bottom: 8px;
}
.offcanvas .mobile-nav-item.dropdown {
  position: relative;
}
.offcanvas .mobile-nav-link {
  display: block;
  padding: 12px 16px;
  color: #1D1D1B;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.offcanvas .mobile-nav-link:hover {
  background-color: #F3F1EA;
}
.offcanvas .mobile-nav-link.active {
  background-color: #4B5240;
  color: #FFFFFF;
}
.offcanvas .mobile-nav-link.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offcanvas .mobile-nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  content: "▼";
  font-size: 0.7rem;
  border: none;
}
.offcanvas .dropdown-menu {
  position: static !important;
  float: none !important;
  width: 100%;
  background-color: #F8F7F4;
  border: none;
  border-radius: 12px;
  padding: 8px;
  margin-top: 5px;
  box-shadow: none;
}
.offcanvas .dropdown-menu .dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #1D1D1B;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.offcanvas .dropdown-menu .dropdown-item:hover {
  background-color: #E7E3DA;
}
.offcanvas .dropdown-menu .dropdown-item.active {
  background-color: #4B5240;
  color: #FFFFFF;
}
.offcanvas .mobile-contact {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #E7E3DA;
}
.offcanvas .mobile-contact hr {
  display: none;
}
.offcanvas .mobile-contact .contact-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #F8F7F4;
  padding: 12px 16px;
  border-radius: 50px;
  color: #1D1D1B;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.offcanvas .mobile-contact .contact-pill i {
  width: 20px;
  color: #4B5240;
  font-size: 1rem;
}
.offcanvas .mobile-contact .contact-pill span {
  flex: 1;
}
.offcanvas .mobile-contact .contact-pill a {
  color: #1D1D1B;
  text-decoration: none;
  flex: 1;
}
.offcanvas .mobile-contact .contact-pill a:hover {
  color: #4B5240;
}
.offcanvas .mobile-contact .btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #4B5240;
  border: none;
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.offcanvas .mobile-contact .btn-call i {
  font-size: 1rem;
}
.offcanvas .mobile-contact .btn-call:hover {
  background-color: #3a4032;
  transform: translateY(-2px);
}
.offcanvas .mobile-contact .btn-call:active {
  transform: translateY(0);
}

@media (max-width: 575px) {
  .offcanvas.offcanvas-start {
    width: 100%;
  }
}
.modal .modal-dialog {
  max-width: 450px;
}
.modal .modal-content {
  background-color: #FFFFFF;
  border: 1px solid #E7E3DA;
  border-radius: 20px;
  overflow: hidden;
}
.modal .modal-header {
  border-bottom: 1px solid #E7E3DA;
  padding: 20px 24px;
}
.modal .modal-header .modal-title {
  color: #1D1D1B;
  font-weight: 600;
  font-size: 1.25rem;
}
.modal .modal-body {
  padding: 24px;
}
.modal .modal-body .form-label {
  color: #1D1D1B;
  font-weight: 500;
  margin-bottom: 8px;
}
.modal .modal-body .form-control {
  border: 1px solid #E7E3DA;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.2s ease;
}
.modal .modal-body .form-control:focus {
  border-color: #4B5240;
  box-shadow: 0 0 0 3px rgba(75, 82, 64, 0.1);
  outline: none;
}
.modal .modal-footer {
  border-top: 1px solid #E7E3DA;
  padding: 16px 24px 24px;
}
.modal .modal-footer .btn-outline-stone {
  border: 1px solid #E7E3DA;
  color: #1D1D1B;
  background-color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 40px;
  transition: 0.2s;
}
.modal .modal-footer .btn-outline-stone:hover {
  background-color: #F3F1EA;
  border-color: #E7E3DA;
}
.modal .modal-footer .btn-submit {
  background-color: #4B5240;
  border: none;
  color: #FFFFFF;
  padding: 10px 28px;
  border-radius: 40px;
  transition: 0.2s;
}
.modal .modal-footer .btn-submit:hover {
  background-color: #3a4032;
}

.slider-wrapper {
  padding: 20px 0;
  background-color: #F8F7F4;
}
.slider-wrapper .container {
  padding: 0;
}

.carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.carousel .carousel-indicators {
  bottom: 20px;
  z-index: 15;
}
.carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.5;
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.carousel .carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.2);
  background-color: #4B5240;
}
.carousel .carousel-indicators button:hover {
  opacity: 0.8;
  transform: scale(1.1);
}
.carousel .carousel-inner {
  border-radius: 24px;
}
.carousel .carousel-inner .carousel-item {
  max-height: 600px;
  overflow: hidden;
}
.carousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.5s ease;
}
.carousel .carousel-inner .carousel-item:hover img {
  transform: scale(1.03);
}
.carousel .carousel-caption {
  background: linear-gradient(90deg, rgba(29, 29, 27, 0.7) 0%, rgba(29, 29, 27, 0.3) 100%);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 1.2rem 2rem;
  bottom: 30px;
  left: 30px;
  right: auto;
  width: auto;
  min-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  text-align: left;
  animation: fadeInUp 0.5s ease;
}
.carousel .carousel-caption h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.carousel .carousel-caption p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.5;
}
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  width: 60px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel .carousel-control-prev:hover,
.carousel .carousel-control-next:hover {
  opacity: 1;
}
.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-prev .carousel-control-next-icon,
.carousel .carousel-control-next .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(29, 29, 27, 0.5);
  border-radius: 50%;
  background-size: 50%;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-prev .carousel-control-next-icon:hover,
.carousel .carousel-control-next .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
  background-color: #4B5240;
  transform: scale(1.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider-wrapper {
    padding: 15px 0;
  }
  .carousel {
    border-radius: 20px;
  }
  .carousel .carousel-inner .carousel-item {
    max-height: 500px;
  }
  .carousel .carousel-inner .carousel-item img {
    height: 500px;
  }
  .carousel .carousel-caption {
    padding: 1rem 1.5rem;
    bottom: 20px;
    left: 20px;
    min-width: 240px;
  }
  .carousel .carousel-caption h4 {
    font-size: 1.3rem;
  }
  .carousel .carousel-caption p {
    font-size: 0.95rem;
  }
  .carousel .carousel-control-prev,
  .carousel .carousel-control-next {
    width: 50px;
  }
  .carousel .carousel-control-prev .carousel-control-prev-icon,
  .carousel .carousel-control-prev .carousel-control-next-icon,
  .carousel .carousel-control-next .carousel-control-prev-icon,
  .carousel .carousel-control-next .carousel-control-next-icon {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 767px) {
  .slider-wrapper {
    padding: 10px 0;
  }
  .carousel {
    border-radius: 16px;
  }
  .carousel .carousel-indicators {
    bottom: 10px;
  }
  .carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .carousel .carousel-inner .carousel-item {
    max-height: 400px;
  }
  .carousel .carousel-inner .carousel-item img {
    height: 400px;
    filter: brightness(0.75);
  }
  .carousel .carousel-caption {
    display: block !important;
    padding: 0.8rem 1.2rem;
    bottom: 15px;
    left: 15px;
    right: 15px;
    min-width: auto;
    background: linear-gradient(90deg, rgba(29, 29, 27, 0.8) 0%, rgba(29, 29, 27, 0.4) 100%);
    border-radius: 12px;
  }
  .carousel .carousel-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  .carousel .carousel-caption p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  .carousel .carousel-control-prev,
  .carousel .carousel-control-next {
    width: 40px;
    opacity: 0.6;
  }
  .carousel .carousel-control-prev .carousel-control-prev-icon,
  .carousel .carousel-control-prev .carousel-control-next-icon,
  .carousel .carousel-control-next .carousel-control-prev-icon,
  .carousel .carousel-control-next .carousel-control-next-icon {
    width: 32px;
    height: 32px;
    background-size: 40%;
  }
}
@media (max-width: 480px) {
  .carousel {
    border-radius: 12px;
  }
  .carousel .carousel-inner .carousel-item {
    max-height: 350px;
  }
  .carousel .carousel-inner .carousel-item img {
    height: 350px;
  }
  .carousel .carousel-caption {
    padding: 0.6rem 1rem;
  }
  .carousel .carousel-caption h4 {
    font-size: 0.95rem;
  }
  .carousel .carousel-caption p {
    font-size: 0.75rem;
  }
}
@media (min-width: 1920px) {
  .carousel .carousel-inner .carousel-item {
    max-height: 700px;
  }
  .carousel .carousel-inner .carousel-item img {
    height: 700px;
  }
}
.video-text-section {
  background-color: #f4f2eb;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.video-text-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(154, 168, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.video-text-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(154, 168, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.video-text-section .container {
  position: relative;
  z-index: 2;
}
.video-text-section .video-text {
  padding-right: 2rem;
}
.video-text-section .video-text h2 {
  font-size: 2.4rem;
  font-weight: 350;
  color: #4e5b4a;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.video-text-section .video-text h2 span {
  font-weight: 500;
  color: #6a7c63;
  border-bottom: 2px solid #b6ccb0;
  display: inline-block;
  padding-bottom: 4px;
}
.video-text-section .video-text .lead {
  font-size: 1.2rem;
  color: #5a5a52;
  line-height: 1.6;
  max-width: 90%;
}
.video-text-section .video-text .video-features .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 8px 15px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  transition: all 0.2s ease;
}
.video-text-section .video-text .video-features .feature-item i {
  font-size: 1.2rem;
  color: #7f8c7a;
  width: 24px;
  text-align: center;
}
.video-text-section .video-text .video-features .feature-item span {
  font-size: 1rem;
  color: #3c403c;
}
.video-text-section .video-text .video-features .feature-item:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: translateX(5px);
}
.video-text-section .video-text .video-features .feature-item:hover i {
  color: #6a7c63;
}
.video-text-section .video-wrapper {
  width: 100%;
}
.video-text-section .video-wrapper .plyr-player {
  width: 100%;
  position: relative;
  background-color: #2a2a2a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 40px -15px rgba(70, 60, 50, 0.3);
  transition: all 0.3s ease;
}
.video-text-section .video-wrapper .plyr-player:hover {
  box-shadow: 0 30px 50px -15px rgba(70, 60, 50, 0.4);
  transform: translateY(-3px);
}
.video-text-section .video-wrapper .plyr-player::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-text-section .video-wrapper .plyr-player .plyr,
.video-text-section .video-wrapper .plyr-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.video-text-section .video-wrapper .plyr {
  --plyr-color-main: #9aa899;
  --plyr-video-controls-background: rgba(0, 0, 0, 0.5);
  --plyr-video-control-color: white;
  --plyr-video-control-color-hover: white;
  --plyr-video-progress-buffered-background: rgba(255, 255, 255, 0.3);
  --plyr-range-fill-background: #b6ccb0;
  --plyr-font-size-time: 14px;
  --plyr-font-size-menu: 14px;
  border-radius: 24px;
}
.video-text-section .video-wrapper .plyr video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #1a1a1a;
}
.video-text-section .video-wrapper .plyr .plyr__controls {
  backdrop-filter: blur(5px);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
@media (min-width: 1400px) {
  .video-text-section .video-wrapper .plyr .plyr__controls {
    padding: 16px;
  }
  .video-text-section .video-wrapper .plyr .plyr__controls .plyr__control {
    padding: 10px;
  }
}
.video-text-section .video-wrapper .plyr .plyr__control--overlaid {
  background-color: rgba(154, 168, 153, 0.8);
  border-radius: 50%;
  transition: all 0.2s ease;
  padding: 20px;
}
.video-text-section .video-wrapper .plyr .plyr__control--overlaid:hover {
  background-color: #9aa899;
  transform: scale(1.1);
}
.video-text-section .video-wrapper .plyr .plyr__control--overlaid svg {
  fill: white;
  width: 28px;
  height: 28px;
}
@media (min-width: 1400px) {
  .video-text-section .video-wrapper .plyr .plyr__control--overlaid {
    padding: 24px;
  }
  .video-text-section .video-wrapper .plyr .plyr__control--overlaid svg {
    width: 32px;
    height: 32px;
  }
}
.video-text-section .video-wrapper .plyr .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.2);
}
.video-text-section .video-wrapper .plyr .plyr__time {
  font-size: 14px;
}
@media (min-width: 1400px) {
  .video-text-section .video-wrapper .plyr .plyr__time {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .video-text-section .video-wrapper .plyr .plyr__progress input[type=range] {
    height: 8px;
  }
}
@media (min-width: 1400px) {
  .video-text-section .video-wrapper .plyr .plyr__volume input[type=range] {
    width: 120px;
  }
}
.video-text-section .video-wrapper .video-caption {
  font-size: 0.9rem;
  color: #6d6d5e;
  margin-top: 1rem;
  font-style: italic;
}
@media (min-width: 768px) and (max-width: 991px) {
  .video-text-section {
    padding: 3rem 0;
  }
  .video-text-section .video-text {
    padding-right: 1rem;
  }
  .video-text-section .video-text h2 {
    font-size: 2rem;
  }
  .video-text-section .video-text .lead {
    font-size: 1.1rem;
    max-width: 100%;
  }
  .video-text-section .video-features .feature-item {
    padding: 6px 12px;
  }
  .video-text-section .video-features .feature-item i {
    font-size: 1rem;
  }
  .video-text-section .video-features .feature-item span {
    font-size: 0.9rem;
  }
  .video-text-section .video-wrapper .plyr .plyr__control--overlaid {
    padding: 18px;
  }
  .video-text-section .video-wrapper .plyr .plyr__control--overlaid svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 767px) {
  .video-text-section {
    padding: 2.5rem 0;
  }
  .video-text-section .row {
    flex-direction: column-reverse;
  }
  .video-text-section .video-text {
    padding-right: 0;
    margin-top: 2rem;
    text-align: center;
  }
  .video-text-section .video-text h2 {
    font-size: 1.8rem;
  }
  .video-text-section .video-text h2 span {
    border-bottom-width: 1px;
  }
  .video-text-section .video-text .lead {
    font-size: 1rem;
    max-width: 100%;
  }
  .video-text-section .video-text .video-features {
    display: none;
  }
  .video-text-section .video-wrapper .plyr-player {
    border-radius: 16px;
  }
  .video-text-section .video-wrapper .plyr {
    border-radius: 16px;
  }
  .video-text-section .video-wrapper .plyr .plyr__control--overlaid {
    padding: 16px;
  }
  .video-text-section .video-wrapper .plyr .plyr__control--overlaid svg {
    width: 22px;
    height: 22px;
  }
  .video-text-section .video-wrapper .plyr .plyr__controls {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 8px;
  }
  .video-text-section .video-wrapper .plyr .plyr__controls .plyr__control {
    padding: 6px;
  }
  .video-text-section .video-wrapper .plyr .plyr__controls .plyr__time {
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  .video-text-section .video-text h2 {
    font-size: 1.5rem;
  }
  .video-text-section .video-text .lead {
    font-size: 0.95rem;
  }
  .video-text-section .video-wrapper .plyr .plyr__control--overlaid {
    padding: 14px !important;
  }
  .video-text-section .video-wrapper .plyr .plyr__control--overlaid svg {
    width: 20px !important;
    height: 20px !important;
  }
}
@media (min-width: 1920px) {
  .video-text-section .video-wrapper .plyr {
    --plyr-font-size-time: 18px;
    --plyr-font-size-menu: 18px;
  }
  .video-text-section .video-wrapper .plyr .plyr__control--overlaid {
    padding: 28px;
  }
  .video-text-section .video-wrapper .plyr .plyr__control--overlaid svg {
    width: 38px;
    height: 38px;
  }
  .video-text-section .video-wrapper .plyr .plyr__controls {
    padding: 20px;
  }
  .video-text-section .video-wrapper .plyr .plyr__controls .plyr__control {
    padding: 12px;
  }
  .video-text-section .video-wrapper .plyr .plyr__progress input[type=range] {
    height: 10px;
  }
  .video-text-section .video-wrapper .plyr .plyr__volume input[type=range] {
    width: 150px;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.video-text {
  animation: fadeInLeft 0.5s ease;
}

.page-wrapper {
  padding: 2rem 0 4rem;
  background-color: #f9f7f3;
  min-height: 100vh;
}
.page-wrapper .page-title {
  color: #4e5b4a;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.5rem;
}
.page-wrapper .page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #b6ccb0;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .page-wrapper .page-title {
    font-size: 2rem;
  }
}
.page-wrapper .page-content {
  background: rgba(255, 255, 255, 0.9254901961);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #dcd7cc;
  color: #4a5a4a;
  line-height: 1.8;
}
.page-wrapper .page-content h2 {
  color: #4e5b4a;
  font-size: 2rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e0d5;
}
.page-wrapper .page-content h2:first-child {
  margin-top: 0;
}
.page-wrapper .page-content h3 {
  color: #4e5b4a;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1.5rem 0 1rem;
}
.page-wrapper .page-content h4 {
  color: #4e5b4a;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1.2rem 0 0.8rem;
}
.page-wrapper .page-content p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.page-wrapper .page-content p:last-child {
  margin-bottom: 0;
}
.page-wrapper .page-content strong {
  color: #3c503c;
  font-weight: 600;
}
.page-wrapper .page-content em {
  color: #6a7c63;
  font-style: italic;
}
.page-wrapper .page-content a {
  color: #9aa899;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px dotted #d0c8bb;
}
.page-wrapper .page-content a:hover {
  color: #6a7c63;
  border-bottom-color: #6a7c63;
}
.page-wrapper .page-content a[target=_blank]::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 0.8rem;
  margin-left: 0.4rem;
  opacity: 0.7;
}
.page-wrapper .page-content ul, .page-wrapper .page-content ol {
  margin: 1rem 0 1.5rem;
  padding-left: 2rem;
}
.page-wrapper .page-content ul li, .page-wrapper .page-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.page-wrapper .page-content ul li:last-child, .page-wrapper .page-content ol li:last-child {
  margin-bottom: 0;
}
.page-wrapper .page-content ul li strong, .page-wrapper .page-content ol li strong {
  color: #3c503c;
}
.page-wrapper .page-content ul {
  list-style-type: disc;
}
.page-wrapper .page-content ul li::marker {
  color: #b6ccb0;
}
.page-wrapper .page-content ol {
  list-style-type: decimal;
}
.page-wrapper .page-content ol li::marker {
  color: #9aa899;
  font-weight: 500;
}
.page-wrapper .page-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background-color: #f3f0e9;
  border-left: 4px solid #b6ccb0;
  border-radius: 0 16px 16px 0;
  font-style: italic;
  color: #4a5a4a;
}
.page-wrapper .page-content blockquote p {
  margin-bottom: 0.5rem;
}
.page-wrapper .page-content blockquote p:last-child {
  margin-bottom: 0;
}
.page-wrapper .page-content blockquote footer {
  margin-top: 0.5rem;
  color: #7f8c7a;
  font-size: 0.9rem;
}
.page-wrapper .page-content blockquote footer cite {
  font-style: normal;
  color: #4e5b4a;
  font-weight: 500;
}
.page-wrapper .page-content blockquote footer::before {
  content: "— ";
}
.page-wrapper .page-content hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px dashed #d0c8bb;
  opacity: 0.7;
}
.page-wrapper .page-content a[rel=nofollow]::after {
  content: "\f35d";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 0.7rem;
  margin-left: 0.3rem;
  opacity: 0.5;
}
.page-wrapper .page-content blockquote footer cite {
  font-weight: 500;
}
.page-wrapper .page-content p strong:first-child {
  color: #6a7c63;
}
@media (max-width: 767px) {
  .page-wrapper .page-content {
    padding: 1.5rem;
  }
  .page-wrapper .page-content h2 {
    font-size: 1.6rem;
  }
  .page-wrapper .page-content h3 {
    font-size: 1.3rem;
  }
  .page-wrapper .page-content blockquote {
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
  }
  .page-wrapper .page-content ul, .page-wrapper .page-content ol {
    padding-left: 1.5rem;
  }
}
@media (max-width: 375px) {
  .page-wrapper .page-content {
    padding: 1rem;
  }
  .page-wrapper .page-content h2 {
    font-size: 1.4rem;
  }
  .page-wrapper .page-content blockquote {
    padding: 0.8rem 1rem;
  }
}

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  padding: 3rem 0 0 0;
}
.footer a {
  color: #b8c4b3;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem !important;
  margin-bottom: 2rem;
}
.footer .footer-top .footer-logo .company {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.footer .footer-top .footer-logo .company::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #b8c4b3, transparent);
  border-radius: 2px;
}
.footer .footer-top .footer-politics .politics-link {
  color: #b8c4b3;
  font-size: 0.95rem;
  border-bottom: 1px dotted rgba(184, 196, 179, 0.5);
  padding-bottom: 2px;
}
.footer .footer-top .footer-politics .politics-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}
.footer .footer-top .footer-copy {
  font-size: 0.9rem;
  color: #999999;
  line-height: 1.4;
}
.footer .footer-middle .footer-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.footer .footer-middle .footer-section:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.footer .footer-middle .footer-title,
.footer .footer-middle .footer-title-static {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.3px;
  position: relative;
}
.footer .footer-middle .footer-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
}
.footer .footer-middle .footer-title .toggle-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
}
.footer .footer-middle .footer-title .toggle-icon::before, .footer .footer-middle .footer-title .toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #b8c4b3;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.footer .footer-middle .footer-title .toggle-icon::before {
  top: 9px;
  left: 4px;
  width: 12px;
  height: 2px;
}
.footer .footer-middle .footer-title .toggle-icon::after {
  top: 4px;
  left: 9px;
  width: 2px;
  height: 12px;
}
.footer .footer-middle .footer-title[aria-expanded=true] .toggle-icon {
  transform: rotate(45deg);
}
.footer .footer-middle .form-section .form-description {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.footer .footer-middle .form-section .callback-form .form-group {
  margin-bottom: 1rem;
}
.footer .footer-middle .form-section .callback-form .form-group .form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.footer .footer-middle .form-section .callback-form .form-group .form-control::-moz-placeholder {
  color: #888888;
}
.footer .footer-middle .form-section .callback-form .form-group .form-control::placeholder {
  color: #888888;
}
.footer .footer-middle .form-section .callback-form .form-group .form-control:focus {
  outline: none;
  border-color: #b8c4b3;
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(184, 196, 179, 0.1);
}
.footer .footer-middle .form-section .callback-form .form-group textarea.form-control {
  resize: vertical;
  font-family: inherit;
}
.footer .footer-middle .form-section .callback-form .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #4B5240 0%, #5a6a4e 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.footer .footer-middle .form-section .callback-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(75, 82, 64, 0.4);
}
.footer .footer-middle .form-section .callback-form .btn-submit:active {
  transform: translateY(0);
}
.footer .footer-middle .form-section .callback-form .form-note {
  margin-top: 1rem;
  text-align: center;
}
.footer .footer-middle .form-section .callback-form .form-note small {
  font-size: 0.75rem;
  color: #888888;
}
.footer .footer-middle .form-section .callback-form .form-note small a {
  color: #b8c4b3;
}
.footer .footer-middle .form-section .callback-form .form-note small a:hover {
  color: #ffffff;
}
.footer .footer-middle .footer-meta {
  transition: all 0.3s ease;
}
.footer .footer-middle .footer-meta .meta-subsection {
  margin-bottom: 1.2rem;
}
.footer .footer-middle .footer-meta .meta-subsection:last-child {
  margin-bottom: 0;
}
.footer .footer-middle .footer-meta .meta-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #c8d4c3;
  margin-bottom: 0.7rem;
  letter-spacing: 0.2px;
}
.footer .footer-middle .footer-meta .meta-item {
  display: flex;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer .footer-middle .footer-meta .meta-item:last-child {
  margin-bottom: 0;
}
.footer .footer-middle .footer-meta .meta-label {
  min-width: 90px;
  color: #999999;
  font-weight: 500;
}
.footer .footer-middle .footer-meta .meta-text {
  color: #e0e0e0;
  flex: 1;
}
.footer .footer-middle .footer-meta .meta-link {
  color: #b8c4b3;
}
.footer .footer-middle .footer-meta .meta-link:hover {
  color: #ffffff;
}
.footer .footer-middle .footer-meta .meta-phones {
  flex: 1;
}
.footer .footer-middle .footer-meta .meta-phones .meta-link {
  white-space: nowrap;
}
.footer .footer-middle .footer-meta .footer-social {
  margin-top: 0.5rem;
}
.footer .footer-middle .footer-meta .footer-social .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
}
.footer .footer-middle .footer-meta .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.3rem;
  transition: all 0.2s ease;
}
.footer .footer-middle .footer-meta .footer-social .social-links .social-link:hover {
  transform: translateY(-3px);
}
.footer .footer-middle .footer-meta .footer-social .social-links .social-link:hover.youtube {
  background-color: #ff0000;
}
.footer .footer-middle .footer-meta .footer-social .social-links .social-link:hover.vk {
  background-color: #0077ff;
}
.footer .footer-middle .footer-meta .footer-social .social-links .social-link:hover.telegram {
  background-color: #0088cc;
}
.footer .footer-middle .footer-meta .developer-block {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-middle .footer-meta .developer-block .developer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  transition: all 0.2s ease;
}
.footer .footer-middle .footer-meta .developer-block .developer-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}
.footer .footer-middle .footer-meta .developer-block .developer-link .developer-text {
  font-size: 0.85rem;
  color: #999999;
}
.footer .footer-middle .footer-meta .developer-block .developer-link .developer-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #b8c4b3;
  transition: color 0.2s ease;
}
@media (max-width: 767px) {
  .footer {
    padding: 2rem 0 0 0;
  }
  .footer .footer-top {
    text-align: center;
  }
  .footer .footer-top .footer-logo .company::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer .footer-top .footer-copy {
    text-align: center !important;
  }
  .footer .footer-middle .footer-section {
    padding: 1.2rem;
  }
  .footer .footer-middle .footer-title {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .footer .footer-middle .meta-item {
    flex-wrap: wrap;
  }
  .footer .footer-middle .meta-item .meta-label {
    min-width: 100%;
    margin-bottom: 0.2rem;
  }
  .footer .footer-middle .meta-item .meta-text,
  .footer .footer-middle .meta-item .meta-link,
  .footer .footer-middle .meta-item .meta-phones {
    padding-left: 0.5rem;
  }
  .footer .footer-middle .social-links {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .meta-phones {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .meta-phones .meta-link {
    white-space: normal !important;
  }
}/*# sourceMappingURL=landing-page.css.map */