@charset "UTF-8";
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
		"Noto Color Emoji";
  --default-font-size: 18px;
  --default-font-width: 300;
  --heading-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
		"Noto Color Emoji";
  --nav-font: "Inter", sans-serif; }

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #364d59;
  /* Default color used for the majority of the text content across the entire website */
  --accent-color: #725b39;
  --surface-color: #f2f2f2;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Белый Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --heading-color: var(--accent-color);
  border-radius: 2px; }

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(0,0,0,0.55);
  /* The default color of the main navmenu links */
  --nav-hover-color: #364d59;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(0,0,	0,0.5);
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #364d59;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */ }

:root {
  --cassiopeia-color-primary: var(--accent-color);
  --cassiopeia-color-link: var(--accent-color);
  --link-color: var(--accent-color);
  --link-color-rgb: rgb(45%, 36%, 22%);
  --cassiopeia-color-hover: var(--accent-color);
  --link-hover-color:  var(--accent-color);
  --link-hover-color-rgb: rgb(45%, 36%, 22%); }

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.muted-background {
  background-color: #f2f2f2;
  color: var(--default-color:); }

.light-background {
  background-color: #efddc2;
  color: var(--default-color:); }

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff; }

/* Smooth scroll */
:root {
  scroll-behavior: smooth; }

/*
@mixin btn-primary {
    color: var(--button-primary-color);
    background-color: var(--primary);
    border-color: var(--primary);
    &:hover {
        color: var(--button-primary-color-hover);
        background-color: var(--primary-light);
        border-color: var(--primary-light);
    }
    &:focus,
    &:focus-visible,
    &.active:focus-visible,
    &.show:focus-visible {
        box-shadow: 0 0 0 .25rem rgba(var(--btn-primary-focus-shadow-rgb),.5);
    }
    &:active,
    &.active,
    &.show {
        color: var(--button-primary-color-hover);
        background-color: var(--primary-light);
        border-color: var(--primary-light);
        box-shadow: var(--btn-active-box-shadow);
    }
    &:disabled,
    &.disabled {color: var(--button-primary-color);
        background-color: var(--primary);
        border-color: var(--primary);
    }

}

@mixin btn-success {
    color: $btn-success-color;
    background-color: $color-base;
    border-color: $color-base;
    &:hover {
        color: $btn-success-color;
        background-color: $color-base-light;
        border-color: $color-base-light;
        box-shadow: none;
    }
    &:focus,
    &:disabled,
    &:active,
    &:active:focus {
        color:$btn-success-color;
        background-color: $color-base;
        border-color: $color-base;
        box-shadow: none;
    }
    &-border {
        color: $color-base;
        background-color: #fff;
        border: 1px solid $color-base;
        &:hover {
            color: $color-base-light;
            background-color: #fff;
            border-color: $color-base-light;
        }
        &:focus,
        &:disabled,
        &:active,
        &:active:focus {
            color: $color-base;
            background-color: #fff;
            border: 1px solid $color-base;
            box-shadow: none;
        }
    }
}
*/
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-size: var(--default-font-size);
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: var(--default-font-width); }

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s; }

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font); }

ol, ul {
  padding-left: 1rem; }

article table, .table-content {
  width: 100% !important;
  /* Растягиваем на всю ширину экрана */
  margin-bottom: 20px;
  border: 1px solid #dddddd;
  border-collapse: collapse;
  background-color: var(--background-color);
  color: var(--default-color); }

article table th, .table-content th {
  font-weight: bold;
  padding: 5px;
  background: #efefef;
  border: 1px solid #dddddd; }

article table td, .table-content td {
  border: 1px solid #dddddd;
  padding: 5px; }

@media (max-width: 768px) {
  article table, .table-content {
    display: block;
    /* Превращаем саму таблицу в контейнер */
    width: 100% !important;
    /* Растягиваем на всю ширину экрана */
    overflow-x: auto;
    /* Включаем горизонтальный скролл */
    -webkit-overflow-scrolling: touch;
    /* Плавный скролл на iOS */
    border-collapse: collapse; } }

.zebra tbody tr:nth-child(even) {
  background: #f0f0f0;
  /* Зебра */ }

.list {
  list-style: none;
  padding: 0;
  margin: auto;
  text-decoration: none; }
  .list a {
    text-decoration: none; }

/*--------------------------------------------------------------
# Backgrounds
--------------------------------------------------------------*/
.bg-surface {
  background: var(--surface-color); }

/*--------------------------------------------------------------
# Page Headr
--------------------------------------------------------------*/
.page-header {
  margin-bottom: 30px; }
  .page-header h1 {
    position: relative;
    text-align: center;
    padding-bottom: 15px;
    opacity: 0.9;
    font-weight: 600;
    color: var(--default-color); }
    .page-header h1::after {
      content: "";
      position: absolute;
      display: block;
      width: 80px;
      height: 4px;
      background: var(--accent-color);
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0 auto; }
  @media screen and (min-width: 1200px) {
    .page-header {
      margin-bottom: 50px; } }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  padding: 80px 0;
  scroll-margin-top: 100px;
  overflow: clip; }

@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 66px; } }

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative; }

.section-title h2 {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
  font-family: var(--default-font); }

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px; }

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  font-family: var(--heading-font); }

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-get-started {
  background-color: var(--accent-color);
  border-radius: 0;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.21);
  border: none;
  margin-top: 25px;
  padding: 10px 25px; }
  .btn-get-started:hover {
    background-color: var(--accent-color);
    opacity: 0.8; }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999; }

#preloader:before, #preloader:after {
  content: "";
  background-color: #000000;
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1; }

#preloader:after {
  left: auto;
  right: 0; }

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s; }

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards; }

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms; }

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important; }

#preloader.loaded .line:after {
  opacity: 0; }

#preloader.loaded:before, #preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards; }

@keyframes lineincrease {
  0% {
    height: 0%; }
  100% {
    height: 100%; } }
@keyframes linemove {
  0% {
    transform: translateY(200%); }
  100% {
    transform: translateY(-100%); } }
@keyframes preloaderfinish {
  0% {
    width: 5 0%; }
  100% {
    width: 0%; } }
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.back-to-top-link {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 60px;
  height: 45px;
  border-radius: none;
  transition: all 0.4s;
  border: none;
  color: var(--contrast-color);
  padding: 0.5em; }

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0; }

.back-to-top-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%); }

.back-to-top-link.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px; }

.btn-get-started {
  background-color: var(--accent-color);
  border-radius: 0;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.21);
  border: none;
  margin-top: 25px;
  padding: 10px 25px; }
  .btn-get-started:hover {
    background-color: var(--accent-color);
    opacity: 0.8; }

.home main {
  display: none; }

.container-component main {
  margin-bottom: 60px; }

.below-top-section {
  display: none;
  background-color: var(--surface-color);
  color: var(--default-color); }
  .below-top-section .mod-menu.metismenu a {
    /*		@include link-contrast; */
    color: var(--default-color); }
    .below-top-section .mod-menu.metismenu a .fa {
      color: var(--accent-color); }
    .below-top-section .mod-menu.metismenu a::after {
      display: none; }
@media screen and (min-width: 992px) {
  .below-top-section {
    display: block; } }

.container-top-a > *, .container-bottom-b > * {
  margin: 0; }

/*  Класс для пункта меню для уменьшенной ширины контента */
@media screen and (min-width: 992px) {
  .compact-page main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .compact-page .com-content-article, .compact-page .com-content-category-blog, .compact-page .main-top, .compact-page .main-bottom {
    width: 992px; }
  .compact-page .main-top, .compact-page .main-bottom {
    margin-left: auto;
    margin-right: auto; } }

.header {
  color: var(--default-color);
  background: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); }
@media screen and (max-width: 992px) {
  .header .mod-main-menu {
    order: 3; }
  .header .header-contact {
    flex-grow: 1; }
    .header .header-contact .list {
      justify-content: right; } }

.menu-sticky {
  width: 100%; }

.navbar-brand-section {
  background: var(--background-color);
  padding: 1px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%); }

.container-navbar-brand {
  justify-content: space-between;
  align-items: center; }

.brand-logo img {
  max-height: 55px;
  width: auto; }

.container-header nav {
  margin: 0; }
.container-header .container-below-top {
  padding: 0;
  align-content: center; }
.container-header .mod-dropdown {
  align-self: center; }

.footer {
  background: #272727;
  border-top: #a1a1a1;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  position: relative;
  text-align: center;
  margin-top: 0; }
  .footer .grid-child > *:not(:first-child) {
    margin-top: 30px; }
  .footer h4, .footer__title {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 300; }
  @media screen and (min-width: 992px) {
    .footer {
      text-align: left; }
      .footer .grid-child {
        align-items: flex-start;
        gap: 10%; }
        .footer .grid-child > *:not(:first-child) {
          margin-top: 0; }
        .footer .grid-child div {
          flex-grow: 1;
          flex-basis: 0; } }

.container-footer {
  flex-grow: 1;
  flex-basis: 0; }

.sidebar-panel {
  border: 1px solid #c3c2c2;
  border-radius: var(--border-radius);
  transition: 0.3s;
  padding: 20px; }
  .sidebar-panel h3, .sidebar-panel h4 {
    position: relative;
    padding-bottom: 10px; }
    .sidebar-panel h3::after, .sidebar-panel h4::after {
      content: '';
      display: inline-block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 75%;
      height: 2px;
      background-color: var(--accent-color); }

.sidebar {
  /*    a {
        color: $body-color;
    }
    a:hover,
    a:focus {
        color: $color-base;
    } */ }
  .sidebar__header {
    border-bottom: 2px solid #ddd; }
    .sidebar__header span {
      border-bottom: 2px solid var(--accent-color);
      padding-bottom: 15px;
      display: inline-block;
      margin-bottom: -2px; }
  .sidebar__body {
    overflow: hidden; }

@media screen and (min-width: 992px) {
  .site-grid > [class*="container-sidebar-"] {
    margin-left: 0; }
  .position-sticky-sidebar {
    position: sticky;
    top: 100px;
    height: calc(100vh - 115px);
    overflow-y: auto; } }

@media screen and (min-width: 1200px) {
  .position-sticky-sidebar {
    top: 110px; } }

.blog .category-desc {
  margin-bottom: 35px; }
.blog-items[class*=" masonry-"], .blog-items[class^="masonry-"] {
  display: grid; }
  .blog-item .page-header {
    margin-bottom: 0; }
    .blog-item .page-header a {
      border-bottom: none;
      text-decoration: none;
      padding-bottom: 0; }
.blog .boxed .blog-item {
  -webkit-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  /* @include panel; */ }
  .blog-items:not(.image-left) .item-image {
    aspect-ratio: 1.5;
    overflow: hidden; }
  .blog-items:not(.image-left) img {
    object-fit: cover;
    height: 100%;
    width: 100%; }
    .blog-items:not(.image-left) .page-header > * {
      font-size: calc(18px + 4 * ((100vw - 320px) / (1920 - 320))); }
.blog-item .item-image {
  margin-top: 0;
  text-align: center; }
  .blog .image-left .blog-item .item-content {
    padding-left: 0;
    padding-right: 0; }
@media screen and (min-width: 768px) {
  .blog-items[class*=" masonry-"], .blog-items[class^="masonry-"] {
    grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 992px) {
  .blog-items.masonry-2 {
    grid-template-columns: repeat(2, 1fr); }
  .blog-items.masonry-3 {
    grid-template-columns: repeat(3, 1fr); }
  .blog-items.masonry-4 {
    grid-template-columns: repeat(4, 1fr); }
  .blog-items.masonry-5 {
    grid-template-columns: repeat(5, 1fr); }
  .blog-items.masonry-6 {
    grid-template-columns: repeat(6, 1fr); }
  .blog .image-left .blog-item .item-image, .blog .image-right .blog-item .item-image {
    position: relative;
    flex: 1 0 30%;
    /* img {
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 100%;
                object-fit: cover;
            } */ }
    .blog .image-left .blog-item .item-content {
      padding-top: 0;
      padding-left: 25px;
      padding-right: 25px; } }

.com-content-category-blog h1 {
  position: relative;
  text-align: center;
  padding-bottom: 15px;
  opacity: 0.9;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 30px; }
  .com-content-category-blog h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto; }
@media screen and (min-width: 1200px) {
  .com-content-category-blog h1 {
    margin-bottom: 50px; } }

/* Стили для вводной части статьи */
article .expert-summary {
  font-size: 1.25rem;
  /* Увеличенный размер шрифта */
  line-height: 1.6;
  /* Комфортный межстрочный интервал */
  color: #334155;
  /* Более глубокий или акцентный цвет текста */
  font-weight: 500;
  /* Полужирное начертание */
  margin-bottom: 1.5rem;
  /* Отступ снизу до основного текста */
  border-left: 4px solid var(--accent-color);
  /* Красивая цветная полоса слева (опционально) */
  padding-left: 15px;
  /* Отступ от полосы до текста */ }

/*
.sigFreeContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
*/
ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink {
  background-color: #fff !important; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 30vh;
  position: relative;
  padding: 60px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center; }

.hero h2 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 700; }

.hero h2 .underlight {
  position: relative;
  z-index: 1;
  padding: 0 5px;
  display: inline-block; }

.hero h2 .underlight:before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  z-index: -1; }

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  font-size: 18px; }

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px; } }

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px; }

.hero .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%); }

/*--------------------------------------------------------------
# Header Contacts Module
--------------------------------------------------------------*/
.mod-menu {
  list-style: none;
  padding: 0;
  margin: 0; }

.menu_panel {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  list-style: none;
  padding-left: 0; }
  .menu_panel-link {
    text-align: center; }
  .menu_panel-img-wrapper {
    aspect-ratio: 4; }
  .menu_panel-img {
    width: 100%;
    height: 100%;
    object-fit: contain; }
  .menu_panel-title {
    font-size: calc(14px + 4 * ((100vw - 320px) / (1920 - 320)));
    min-height: calc((14px + 4 * ((100vw - 320px) / (1920 - 320))) * 2);
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 25px;
    margin-bottom: 0; }
  .menu_panel-note {
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 15px; }
  @media screen and (min-width: 576px) {
    .menu_panel[class*="sblock"] {
      grid-template-columns: repeat(2, calc(50% - 15px)); } }
@media screen and (min-width: 768px) {
  .menu_panel {
    gap: 25px; }
    .menu_panel-img-wrapper {
      aspect-ratio: 5; }
    .menu_panel-title {
      min-height: auto; } }
@media screen and (min-width: 992px) {
  .menu_panel[class*="sblock"] {
    grid-template-columns: repeat(3, calc(33.3333% - 15px)); } }
@media screen and (min-width: 1200px) {
  .menu_panel.sblock3 {
    grid-template-columns: repeat(3, calc(33.3333% - 15px)); }
  .menu_panel.sblock4 {
    grid-template-columns: repeat(4, calc(25% - 15px)); }
  .menu_panel.sblock5 {
    grid-template-columns: repeat(5, calc(20% - 15px)); }
  .menu_panel.sblock6 {
    grid-template-columns: repeat(6, calc(16.6666% - 15px)); } }

.menu_panel-box {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 20px;
  /*	&.advantages {
		color: #fff;
		//        font-size: $text-large;
		//        background-color: $color-base;
		padding: 50px 25px;
		li + li {
			margin-top: 25px;
		}
		.mod-menu__heading {
			display: block;
			text-align: center;
		}
		.fa {
			display: block;
			font-size: 2rem;
			margin-bottom: 10px;
		}

		@media screen and (min-width: 768px) {
			li + li {
				margin-top: 0;
			}
		}
	} */ }
  .menu_panel-box-item:last-child a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3); }
  .menu_panel-box-link {
    position: relative;
    height: 100%;
    display: grid;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    margin-top: -1px;
    padding: 0; }
  .menu_panel-box-img-wrapper {
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    grid-column: 1/2;
    grid-row: 1/3; }
  .menu_panel-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .menu_panel-box-content {
    padding: 25px;
    text-align: center; }
  .menu_panel-box-title {
    display: inline-block;
    font-size: calc(14px + 4 * ((100vw - 320px) / (1920 - 320)));
    text-transform: uppercase;
    overflow: hidden;
    box-sizing: content-box;
    /*	padding: 25px 40px 25px 25px; */
    grid-column: 2/3; }
  .menu_panel-box-note {
    /*	padding: 0 40px 25px 25px; */
    grid-column: 2/3; }
  @media screen and (min-width: 576px) {
    .menu_panel-box {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(1, 1fr);
      margin: 0; }
      .menu_panel-box[class*="sblock"] {
        grid-template-columns: repeat(2, calc(50% - 15px)); }
        .menu_panel-box[class*="sblock"]-img-wrapper {
          height: auto;
          aspect-ratio: 1;
          grid-column: initial;
          grid-row: initial; }
        .menu_panel-box[class*="sblock"]-title {
          grid-column: initialauto; }
        .menu_panel-box[class*="sblock"]-note {
          grid-column: initial;
          text-align: center; }
      .menu_panel-box-link {
        flex-direction: column;
        justify-content: flex-end;
        border: 1px solid #c3c2c2;
        border-radius: var(--border-radius);
        transition: 0.3s;
        padding: 20px;
        margin-top: 0;
        padding: 0; }
      .menu_panel-box-img-wrapper {
        width: auto;
        height: auto;
        aspect-ratio: 1; }
      .menu_panel-box-title {
        min-height: calc((14px + 4 * ((100vw - 320px) / (1920 - 320))) * 3);
        /*	text-align: center;
			padding: 25px; */ }
      .menu_panel-box-note {
        /*	padding: 0 25px 25px; */ } }
@media screen and (min-width: 992px) {
  .menu_panel-box[class*="sblock"] {
    grid-template-columns: repeat(4, calc(25% - 15px)); }
  .menu_panel-box-img-wrapper {
    grid-column: initial;
    grid-row: initial; }
  .menu_panel-box-title, .menu_panel-box-note {
    grid-column: initial; }
  .menu_panel-box-note {
    text-align: center; } }
@media screen and (min-width: 1200px) {
  .menu_panel-box.sblock3 {
    grid-template-columns: repeat(3, calc(33.3333% - 15px)); }
  .menu_panel-box.sblock4 {
    grid-template-columns: repeat(4, calc(25% - 15px)); }
  .menu_panel-box.sblock5 {
    grid-template-columns: repeat(5, calc(20% - 15px)); }
  .menu_panel-box.sblock6 {
    grid-template-columns: repeat(6, calc(16.6666% - 15px)); } }

/*--------------------------------------------------------------
# Topbar Menu
--------------------------------------------------------------*/
.mod-topbar-menu li a {
  color: var(--contrast-color);
  opacity: 0.8;
  border-bottom: none;
  text-decoration: none;
  padding-bottom: 0; }
  .mod-topbar-menu li a:hover, .mod-topbar-menu li a:focus {
    opacity: 1; }
.mod-topbar-menu .metismenu-item:has(.hide-contact) {
  display: none; }

/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/
.container-nav {
  align-items: center; }

.mod-main-menu {
  position: relative; }
  .mod-main-menu nav.navbar {
    margin-top: 0; }
  .mod-main-menu .navbar .main-menu > li {
    padding: 10px 0 10px 28px; }
  .mod-main-menu .navbar-toggler {
    color: var(--nav-color); }
  .mod-main-menu .navbar-toggler:hover, .mod-main-menu .navbar-toggler:focus {
    color: var(--nav-hover-color); }
  .mod-main-menu .main-menu {
    align-items: center;
    justify-content: center; }
    .mod-main-menu .main-menu > li {
      padding: 10px 0 10px 28px; }
      .mod-main-menu .main-menu > li > a {
        color: var(--nav-color);
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: none;
        padding: 0;
        overflow: visible !important; }
        .mod-main-menu .main-menu > li > a:hover, .mod-main-menu .main-menu > li > a:focus {
          color: var(--nav-hover-color);
          transform: 0.3s;
          outline: none !important; }
        .mod-main-menu .main-menu > li > a:hover::after, .mod-main-menu .main-menu > li > a:focus::after, .mod-main-menu .main-menu > li > a:active::after, .mod-main-menu .main-menu > li > a.active::after {
          background: var(--nav-dropdown-background-color);
          opacity: 1;
          bottom: -6px; }
        .mod-main-menu .main-menu > li > a .fa {
          padding: 0 !important; }
      .mod-main-menu .main-menu > li.active a {
        color: var(--nav-hover-color);
        text-decoration: none !important; }
        .mod-main-menu .main-menu > li.active a::after {
          background: var(--nav-dropdown-background-color);
          opacity: 1;
          bottom: -6px; }
      .mod-main-menu .main-menu > li.parent {
        position: relative; }
        .mod-main-menu .main-menu > li.parent > a {
          padding-right: 19px; }
        .mod-main-menu .main-menu > li.parent > .mm-toggler {
          position: absolute;
          right: 0; }
      .mod-main-menu .main-menu > li .mm-toggler {
        color: var(--nav-color); }
        .mod-main-menu .main-menu > li .mm-toggler:focus {
          outline: none; }
        .mod-main-menu .main-menu > li .mm-toggler::before {
          display: none; }
        .mod-main-menu .main-menu > li .mm-toggler::after {
          border-left-width: 0.3em;
          border-right-width: 0.3em;
          border-top-width: 0.3em; }
    .mod-main-menu .main-menu.main-menu .metismenu-item > ul {
      width: min(50vw, 300px);
      min-width: auto;
      background: var(--nav-dropdown-background-color);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 0;
      box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
      padding: 20px; }
      .mod-main-menu .main-menu.main-menu .metismenu-item > ul li {
        padding: 0; }
        .mod-main-menu .main-menu.main-menu .metismenu-item > ul li + li {
          margin-top: 10px; }
        .mod-main-menu .main-menu.main-menu .metismenu-item > ul li.active a {
          color: var(--nav-color); }
      .mod-main-menu .main-menu.main-menu .metismenu-item > ul a {
        color: var(--nav-color);
        font-size: 14px;
        text-transform: uppercase;
        font-family: var(--nav-font);
        white-space: normal; }
        .mod-main-menu .main-menu.main-menu .metismenu-item > ul a:hover, .mod-main-menu .main-menu.main-menu .metismenu-item > ul a:focus {
          color: var(--nav-hover-color);
          transform: 0.3s;
          outline: none !important; }
  @media screen and (max-width: 991px) {
    .mod-main-menu .navbar-toggler, .mod-main-menu .navbar-toggler:hover, .mod-main-menu .navbar-toggler:focus {
      border: none;
      box-shadow: none; }
    .mod-main-menu .navbar-toggler_close .icon-menu::before {
      content: "";
      font-size: 24px;
      padding-left: 1px; }
    .mod-main-menu .navbar-collapse {
      position: absolute;
      width: 100vw;
      top: 0;
      left: calc(-100vw + 49px);
      background: var(--nav-mobile-background-color);
      z-index: -1;
      padding: 20px; }
    .mod-main-menu .main-menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      flex-direction: column;
      height: 100vh;
      padding-top: 100px; }
    .mod-main-menu .navbar .main-menu li {
      padding: 10px 0; }
      .mod-main-menu .navbar .main-menu li.parent {
        justify-content: center; }
        .mod-main-menu .navbar .main-menu li.parent > a {
          padding-right: 0; }
        .mod-main-menu .navbar .main-menu li.parent > .mm-toggler {
          position: initial;
          height: auto; }
        .mod-main-menu .navbar .main-menu li.parent ul {
          position: relative;
          top: auto;
          width: 100%;
          border: none;
          box-shadow: none;
          padding: 10px 0 0; }
        .mod-main-menu .navbar .main-menu li.parent li {
          justify-content: center; } }

/*--------------------------------------------------------------
# Advantages Section
--------------------------------------------------------------*/
.icons-menu .menu_panel-title, .icons-menu .menu_panel-note {
  color: var(--default-color); }
.icons-menu .menu_panel-link:hover {
  color: var(--accent-color); }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section .menu_panel-box-img .menu_panel-box-img {
  border-top-left-radius: border-radius;
  border-top-right-radius: border-radius; }
.services-section .menu_panel-box-title {
  padding: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700; }

/*--------------------------------------------------------------
# Footer menu module
--------------------------------------------------------------*/
.footer .mod-menu.nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none; }
  .footer .mod-menu.nav a:hover {
    color: #fff; }
.footer .mod-menu.nav .active a {
  color: #fff; }

/*--------------------------------------------------------------
# Contact page menu module
--------------------------------------------------------------*/
.carousel {
  --height: 55vh;
  height: var(--height); }
  .carousel-inner, .carousel-item, .carousel-wrapper, .carousel .container, .carousel-body {
    height: inherit; }
  .carousel-item {
    position: relative; }
    .carousel-item::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1; }
  .carousel-img {
    position: relative; }
    .carousel-img img {
      height: var(--height);
      position: absolute;
      object-fit: cover;
      object-position: center;
      z-index: 0; }
  .carousel-body {
    position: relative;
    display: flex;
    align-items: center;
    /* justify-self: center; */
    justify-content: center;
    padding: 30px;
    z-index: 2; }
  .carousel-content {
    text-align: center; }
    .carousel-content h2, .carousel-content .h2, .carousel-content h3, .carousel-content .h3 {
      color: var(--contrast-color); }
    .carousel-content h2, .carousel-content .h2 {
      font-size: 2.2rem;
      padding-bottom: 1rem; }
    .carousel-content h3, .carousel-content .h3 {
      font-size: 1.2rem; }
  .carousel .carousel-control-prev, .carousel .carousel-control-next {
    z-index: 10; }
  @media screen and (min-width: 768px) {
    .carousel-body {
      padding: 50px; }
      .carousel-content h2, .carousel-content .h2 {
        font-size: 2.7rem; }
      .carousel-content h3, .carousel-content .h3 {
        font-size: 1.4rem; } }
@media screen and (min-width: 1200px) {
  .carousel-body {
    padding: 70px; }
    .carousel-content h2, .carousel-content .h2 {
      font-size: 3rem; }
    .carousel-content h3, .carousel-content .h3 {
      font-size: 1.6rem; } }

.contacts-page .table-content {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
  border-collapse: collapse;
  background-color: var(--background-color);
  color: var(--default-color); }
@media (max-width: 576px) {
  .contacts-page .table-content {
    font-size: 14px; } }

.contacts .list > li {
  padding-left: 3px; }
  .contacts .list > li + li {
    margin-top: 5px; }
.contacts a {
  opacity: 0.8;
  border-bottom: none;
  text-decoration: none; }
  .contacts a:hover, .contacts a:focus {
    opacity: 1; }
.contacts__addresses {
  padding: 20px; }
.contacts__map {
  padding: 0; }
  .contacts__map iframe {
    height: 500px; }
@media (min-width: 768px) {
  .contacts__map iframe {
    height: 100%; } }

.accordion-button:focus {
  box-shadow: none; }

/*
@media (min-width: 992px) {
    .contacts {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
    }
    .contacts__addresses {
        width: 30%;
        padding-bottom: 0;
    }
    .contacts__map {
        width: 70%;
        margin-top: -25px;
    }
}
*/
.form-control {
  background: rgba(255, 255, 255, 0.4); }

.checkbox-wrapper {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 0.85rem; }

.products-fields {
  font-size: calc(24px + 6 * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  color: var(--accent-color); }

.fields-container:has(.products-fields) {
  overflow: visible;
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px; }
/*# sourceMappingURL=/media/templates/site/cassiopeia_sgk/css/user.css.map */