@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";
  --heading-font: "EB Garamond",  serif;
  --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: #000000;
  /* Background color for the entire website, including individual sections */
  --default-color: #fafafa;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #09A039;
  --accent-color: #09A039;
  --surface-color: #1a1a1a;
  /* 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. */ }

/* 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(255, 255, 255, 0.5);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1a1a1a;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1a1a1a;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.5);
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */ }

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #1a1a1a;
  --surface-color: #343434; }

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

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

/* Title */
:root {
  --body-line-height: 24px;
  --line-height-com-title: 28px; }

/*
@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 {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font); }

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; }

.table-content {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
  border-collapse: collapse;
  background-color: var(--background-color);
  color: var(--default-color); }

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

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

.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;
    font-weight: 700;
    font-size: 52px;
    color: var(--accent-color); }
    .page-header h1::after {
      content: "";
      position: absolute;
      display: block;
      width: 80px;
      height: 4px;
      background: var(--default-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: 40px 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); }

/*--------------------------------------------------------------
# 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: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: none;
  color: var(--default-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; }

/*  Класс для пункта меню для уменьшенной ширины контента */
@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: 10px 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: 35px;
  width: auto; }

.container-header nav {
  margin: 0; }

.footer {
  --background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  text-align: center; }
  .footer .grid-child > *:not(:first-child) {
    margin-top: 30px; }
  @media screen and (min-width: 992px) {
    .footer {
      text-align: left;
      margin-top: 40px; }
      .footer .grid-child {
        align-items: flex-start; }
        .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; }

[class*="sidebar"] .mod-menu a, [class*="sidebar"] .mod-menu a:hover, [class*="sidebar"] .mod-menu a:focus {
  border-bottom: none;
  text-decoration: none;
  padding-bottom: 0; }

.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; }
.sidebar a {
  color: var(--background-color); }
.sidebar a:hover, .sidebar a:focus {
  color: var(--default-color); }

@media screen and (min-width: 992px) {
  .site-grid > [class*="container-sidebar-"] {
    margin-left: 20px; }
  .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 {
  /*
  	&-items[class*=" masonry-"],
    &-items[class^=masonry-] {
        display: grid;
    }
 */
  /*
  .boxed .blog-item {
        -webkit-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        @include panel;
        .item-content {
            padding-left: 0;
            padding-right: 0;
        }
        .btn-secondary {
            color: white;
            background-color: transparent;
        }
    }
    &-items:not(.image-left) {
        .item-image {
            aspect-ratio: 3/2;
            overflow: hidden;
        }
        img {
            object-fit: cover;
//            height: 100%;
            width: 100%;
        }
        .page-header {
            & > * {
                font-size: calc(18px + 4 * ((100vw - 320px) / (1920 - 320)));
                text-align: center;
            }
        }
    }
    &-item .item-image {
        margin-top: 0;
    }

    @media screen and (min-width: 768px) {
        &-items[class*=" masonry-"],
        &-items[class^=masonry-] {
            grid-template-columns: repeat(2, 1fr);
        }
        .boxed .blog-item {
            .item-content {
                padding: 25px;
            }
        }
    }

    @media screen and (min-width: 992px) {
        &-items {
            &.masonry-2 {
                grid-template-columns: repeat(2, 1fr);
            }
            &.masonry-3 {
                grid-template-columns: repeat(3, 1fr);
            }
            &.masonry-4 {
                grid-template-columns: repeat(4, 1fr);
            }
            &.masonry-5 {
                grid-template-columns: repeat(5, 1fr);
            }
            &.masonry-6 {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        .image-left .blog-item .item-image,
        .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-item .page-header {
    margin-bottom: 0; }
    .blog-item .page-header a {
      border-bottom: none;
      text-decoration: none;
      padding-bottom: 0; }
.blog .panel-box .blog-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  padding: 25px;
  border-radius: 0.4rem;
  overflow: hidden; }
  .blog .panel-box .blog-item .item-image {
    aspect-ratio: 1.5;
    margin: -25px;
    margin-bottom: 25px; }
    .blog .panel-box .blog-item .item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  .blog .panel-box .blog-item .btn-secondary {
    color: white;
    background-color: transparent; }
  .blog .panel-box .blog-item .readmore {
    margin-bottom: 0; }
  @media screen and (min-width: 768px) {
    .blog .panel-box .blog-item {
      display: flex;
      flex-direction: row;
      gap: 30px; }
      .blog .panel-box .blog-item .item-image {
        flex: 1 0 30%;
        min-height: 275px;
        margin-right: 0;
        margin-bottom: -25px; }
      .blog .panel-box .blog-item .item-content {
        flex: 1 0 60%; }
      .blog .panel-box .blog-item .page-header h2 {
        max-height: calc(var(--line-height-com-title) * 2);
        height: calc(var(--line-height-com-title) * 2);
        line-height: var(--line-height-com-title);
        text-align: left;
        overflow: hidden; }
      .blog .panel-box .blog-item p:not([class]) {
        height: calc(var(--body-line-height) * 3);
        overflow: hidden; } }
@media screen and (min-width: 992px) {
  .blog .panel-box .blog-item .item-image {
    min-height: 287px; } }

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

/* Здесь можно изменить цвет и степень затемнения
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 0;
}
 */
.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); }

.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%); }

/*--------------------------------------------------------------
# Contact Us Module
--------------------------------------------------------------*/
.contact-us {
  padding: 40px 0;
  border: 1px solid var(--accent-color);
  text-align: center; }
  .contact-us a {
    margin-right: 20px; }
    .contact-us a:last-child {
      margin-right: 0; }

/*--------------------------------------------------------------
# Footer Logo Module
--------------------------------------------------------------*/
.footer-logo img {
  max-width: 50%; }

/*--------------------------------------------------------------
# Header Contacts Module
--------------------------------------------------------------*/
/*
.header-contact {
    .contact-title {
        font-family: var(--heading-font);
    }
} 
*/
.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; }
  .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; }
  .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-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.3333333333;
          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;
        background: var(--surface-color);
        box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        padding: 25px;
        border-radius: 0.4rem;
        border-top: none;
        margin-top: 0; }
        .menu_panel-box-item:last-child a {
          border-bottom: none; }
      .menu_panel-box-img-wrapper {
        width: auto;
        height: auto;
        aspect-ratio: 1.3333333333; }
      .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(3, calc(33.3333% - 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)); } }
.menu_panel-box.advantages {
  color: #fff;
  padding: 50px 25px; }
  .menu_panel-box.advantages li + li {
    margin-top: 25px; }
  .menu_panel-box.advantages .mod-menu__heading {
    display: block;
    text-align: center; }
  .menu_panel-box.advantages .fa {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px; }
  @media screen and (min-width: 768px) {
    .menu_panel-box.advantages li + li {
      margin-top: 0; } }

a.menu_panel-box-link {
  border-bottom: 0;
  padding: 0; }

/*--------------------------------------------------------------
# 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 .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: rgba(255, 255, 255, 0.6);
        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: #fff;
          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: #fff;
        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: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: #fff; }
      .mod-main-menu .main-menu.main-menu .metismenu-item > ul a {
        color: rgba(255, 255, 255, 0.6);
        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: #fff;
          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; } }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section .menu_panel-box-img {
  border-radius: 6px;
  /*        filter: grayscale(1);
		transition: 1s;
		&:hover {
		    filter: grayscale(0);
		} */ }
.services-section .menu_panel-box-content {
  position: absolute;
  /* Position the background text */
  bottom: 0;
  /* At the bottom. Use top:0 to append it to the top */
  background: rgba(0, 0, 0, 0.5);
  /* Black background with 0.5 opacity */
  color: #f1f1f1;
  /* Grey text */
  width: 100%;
  /* Full width */
  padding: 20px;
  /* Some padding */ }
.services-section .menu_panel-box-content {
  min-height: 6em; }
.services-section .menu_panel-box-title {
  text-align: left;
  padding: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700; }
.services-section .menu_panel-box-note {
  text-align: left;
  padding: 0;
  min-height: 3em; }
@media screen and (min-width: 768px) {
  .services-section .menu_panel-box-img {
    filter: grayscale(1);
    transition: 1s; }
    .services-section .menu_panel-box-img:hover {
      filter: grayscale(0); } }

.services-section-1 .menu_panel-box-img {
  border-radius: 6px;
  filter: grayscale(1);
  transition: 1s; }
  .services-section-1 .menu_panel-box-img:hover {
    filter: grayscale(0); }
.services-section-1 .menu_panel-box-content {
  position: absolute;
  /* Position the background text */
  bottom: 0;
  /* At the bottom. Use top:0 to append it to the top */
  background: rgba(0, 0, 0, 0.5);
  /* Black background with 0.5 opacity */
  color: #f1f1f1;
  /* Grey text */
  width: 100%;
  /* Full width */
  padding: 20px;
  /* Some padding */ }
.services-section-1 .menu_panel-box-content {
  min-height: 6em; }
.services-section-1 .menu_panel-box-title {
  text-align: left;
  padding: 0;
  min-height: 0; }
  .services-section-1 .menu_panel-box-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    content: '';
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
.services-section-1 .menu_panel-box-note {
  text-align: left;
  padding: 0;
  min-height: 3em; }

/*--------------------------------------------------------------
# Footer Menu
--------------------------------------------------------------*/
.footer-menu a {
  color: var(--contrast-color);
  opacity: 0.6;
  border-bottom: none;
  text-decoration: none;
  padding-bottom: 0; }
  .footer-menu a:hover, .footer-menu a:focus {
    opacity: 1; }
.footer-menu li.active a {
  text-decoration: none;
  opacity: 1; }

.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 {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  padding: 25px;
  border-radius: 0.4rem; }
  .contacts .list > li {
    padding-left: 3px; }
    .contacts .list > li + li {
      margin-top: 5px; }
  .contacts a {
    color: var(--contrast-color);
    opacity: 0.6;
    border-bottom: none;
    text-decoration: none;
    padding-bottom: 0; }
    .contacts a:hover, .contacts a:focus {
      opacity: 1; }
  .contacts__addresses {
    padding-bottom: 25px; }
  .contacts__map {
    margin: 0 -25px -25px -25px; }

@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; } }
/*# sourceMappingURL=/media/templates/site/cassiopeia_sgk/css/user.css.map */