

/* Start:/local/templates/glavman/css/fonts.css?17691666892432*/
/* TildaSans font family */

/* Variable Font */
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 250 1000;
  src: url('/local/templates/glavman/css/../fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/local/templates/glavman/css/../fonts/TildaSans-VF.woff') format('woff-variations');
}

/* Light (300) */
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 300;
  src: url('/local/templates/glavman/css/../fonts/TildaSans-Light.eot');
  src: url('/local/templates/glavman/css/../fonts/TildaSans-Light.eot?#iefix') format('embedded-opentype'),
       url('/local/templates/glavman/css/../fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/local/templates/glavman/css/../fonts/TildaSans-Light.woff') format('woff');
}

/* Regular (400) */
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 400;
  src: url('/local/templates/glavman/css/../fonts/TildaSans-Regular.eot');
  src: url('/local/templates/glavman/css/../fonts/TildaSans-Regular.eot?#iefix') format('embedded-opentype'),
       url('/local/templates/glavman/css/../fonts/TildaSans-VF.woff2') format('woff2-variations');
}

/* Medium (500) */
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 500;
  src: url('/local/templates/glavman/css/../fonts/TildaSans-Medium.eot');
  src: url('/local/templates/glavman/css/../fonts/TildaSans-Medium.eot?#iefix') format('embedded-opentype'),
       url('/local/templates/glavman/css/../fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/local/templates/glavman/css/../fonts/TildaSans-Medium.woff2') format('woff2'),
       url('/local/templates/glavman/css/../fonts/TildaSans-Medium.woff') format('woff');
}

/* Semibold (600) */
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 600;
  src: url('/local/templates/glavman/css/../fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/local/templates/glavman/css/../fonts/TildaSans-Semibold.woff') format('woff');
}

/* Bold (700) */
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 700;
  src: url('/local/templates/glavman/css/../fonts/TildaSans-Bold.eot');
  src: url('/local/templates/glavman/css/../fonts/TildaSans-Bold.eot?#iefix') format('embedded-opentype'),
       url('/local/templates/glavman/css/../fonts/TildaSans-VF.woff2') format('woff2-variations');
}

/* Extrabold (800) */
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 800;
  src: url('/local/templates/glavman/css/../fonts/TildaSans-VF.woff2') format('woff2-variations');
}

/* Black (900) */
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 900;
  src: url('/local/templates/glavman/css/../fonts/TildaSans-Black.eot');
  src: url('/local/templates/glavman/css/../fonts/TildaSans-Black.eot?#iefix') format('embedded-opentype'),
       url('/local/templates/glavman/css/../fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/local/templates/glavman/css/../fonts/TildaSans-Black.woff2') format('woff2');
}

/* End */


/* Start:/local/templates/glavman/css/base.css?17708179922898*/
/* Base styles for TRF Lift website */

:root {
  /* Colors */
  --color-primary: #142634;        /* Основной синий (header, footer) */
  --color-accent: #CA021C;
  --color-accent-hover: #E0001E;         /* Оранжевый акцент (кнопки, hover) */
  --color-text: #000000;           /* Основной текст */
  --color-text-light: #fbfbfb;     /* Светлый текст (на темном фоне) */
  --color-text-muted: #666666;     /* Приглушенный текст */
  --color-bg: #ffffff;             /* Фон страницы */
  --color-border: rgba(0, 0, 0, 0.1); /* Границы */
  
  /* Layout */
  --layout-max-width: 1180px;
  --container-padding: 20px;
  
  /* Typography */
  --font-family: 'TildaSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;
  
  /* Transitions */
  --transition-base: 0.2s ease-in-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 70px; /* Offset for fixed header */
}

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

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 500;
}

p {
  margin: 0;
}

/* Container */
.container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Utility classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Clearfix */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* Blue button - универсальный класс для всех синих кнопок */
.button-blue {
  display: inline-block;
  padding: 15px 30px;
  color: #ffffff;
  background-color: var(--color-accent);
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  white-space: normal;
}

.button-blue:hover,
.button-blue:focus-visible {
  background-color: var(--color-accent-hover);
  color: #ffffff;
}

/* End */


/* Start:/local/templates/glavman/css/layout/header.css?177081803910438*/
/* Header styles */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--color-primary);
  height: 70px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.main-header__maincontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

/* Left side - Logo */
.main-header__leftside {
  flex-shrink: 0;
}

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

.main-header__logo-link {
  display: block;
}

.main-header__logo {
  max-width: 140px;
  min-width: 140px;
  height: auto;
  display: block;
}

/* Center side - Menu */
.main-header__centerside {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 100%;
}

.main-header__nav {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 981px) {
  .main-header__nav {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 980px) {
  .main-header__nav {
    justify-content: center;
  }
}

.main-header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.main-header__menu-item {
  padding: 0 15px;
  height: 100%;
}

.main-header__menu-item:first-child {
  padding-left: 0;
  padding-right: 15px;
}

.main-header__menu-item:last-child {
  padding-left: 15px;
  padding-right: 0;
}

.main-header__menu-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: capitalize;
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  position: relative;
  text-decoration: none;
  height: 100%;
}
@media screen and (min-width: 981px) {
.main-header__menu-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 18px;
  opacity: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  transition: opacity 0.3s ease;
  pointer-events: none;
}
}


.main-header__menu-link:hover,
.main-header__menu-link:focus-visible {
  color: #ffffff;
}

.main-header__menu-link:hover::after,
.main-header__menu-link:focus-visible::after {
  opacity: 1;
}

.main-header__menu-link.active {
  color: var(--color-accent);
  opacity: 1;
}

.main-header__menu-arrow {
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
}

.main-header__menu-link_submenu:hover .main-header__menu-arrow {
  transform: rotate(180deg);
}

/* Right side - Contacts */
.main-header__rightside {
  flex-shrink: 0;
}

.main-header__rightcontainer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.main-header__contacts {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light);
}

.main-header__phone {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-base);
}

.main-header__phone:hover {
  color: var(--color-accent);
}

.main-header__separator {
  color: var(--color-primary);
  margin: 0 5px;
}

.main-header__email {
  color: var(--color-text-light);
}

/* Burger menu */
.main-header__burger {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 20px;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
  cursor: pointer;
  z-index: 999;
}

.main-header__burger span {
  display: block;
  position: absolute;
  width: 100%;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  height: 3px;
  background-color: #000;
}

.main-header__burger span:nth-child(1) {
  top: 0px;
}

.main-header__burger span:nth-child(2),
.main-header__burger span:nth-child(3) {
  top: 8px;
}

.main-header__burger span:nth-child(4) {
  top: 16px;
}

.main-header__burger.opened span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.main-header__burger.opened span:nth-child(2) {
  transform: rotate(45deg);
}

.main-header__burger.opened span:nth-child(3) {
  transform: rotate(-45deg);
}

.main-header__burger.opened span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

/* Mobile menu */
.main-header__mobile-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  height: max-content;
  background-color: var(--color-primary);
  z-index: 998;
  overflow-y: auto;
  padding: 20px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.main-header__mobile-menu.opened {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-header__mobile-menu .main-header__menu {
  flex-direction: column;
  align-items: flex-start;
}

.main-header__mobile-menu .main-header__menu-item {
  width: 100%;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header__mobile-menu .main-header__menu-link {
  width: 100%;
  font-size: 18px;
  padding: 15px 0;
}


/* Responsive */
@media screen and (max-width: 980px) {

  .main-header__centerside {
    display: none;
  }

  .main-header__rightside {
    display: none;
  }

  .main-header__burger {
    display: block;
  }

  .main-header__burger span {
    background-color: var(--color-text-light);
  }

  .main-header__mobile-menu.opened {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media screen and (min-width: 981px) {
  .main-header__mobile-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* Dropdown Menu Styles */
.main-header__menu-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media screen and (min-width: 981px) {
  .dropdown-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
  }
  
  /* Center info dropdown relative to menu link */
  .dropdown-menu[data-submenu="info"] {
    left: auto;
    right: auto;
    transform: translateX(-50%);
  }
}

.dropdown-menu.opened {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Hover на menu-item для надежности */
@media screen and (min-width: 981px) {
  .main-header__menu-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Mobile dropdown styles */
@media screen and (max-width: 980px) {
  .main-header__menu-item .dropdown-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

  .main-header__menu-item .dropdown-menu.opened {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
  }

  .main-header__menu-item .dropdown-menu__wrapper {
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
  }

  .main-header__menu-item .dropdown-menu__corner {
    display: none;
  }
  .main-header__menu{
    width: 100%;
    
  }
  .dropdown-menu__content{
    padding: 20px;
  }
  
}
@media screen and (max-width: 980px) {
.main-header__mobile-menu.opened {
  height: 100%;
}
}
.dropdown-menu__wrapper {
  position: relative;
  background-color: var(--color-bg);
  border-radius: 10px;
  box-shadow: 0px 2px 3px rgba(0, 11, 48, 0.25);
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 20px;
}

/* Dropdown menu for info - narrower width */
.dropdown-menu[data-submenu="info"] .dropdown-menu__wrapper {
  width: 300px;
}
@media screen and (max-width: 980px) {
  .dropdown-menu[data-submenu="info"] .dropdown-menu__wrapper {
    width: 100%;
  }
}

.dropdown-menu__content {
  background-color: var(--color-bg);
  border-radius: 10px;
}

.dropdown-menu__corner {
  position: absolute;
  top: -6.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-bg);
}

.dropdown-menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Dropdown menu for capacity */
.dropdown-menu[data-submenu="capacity"] .dropdown-menu__list {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (min-width: 981px) {
  /* Capacity dropdown: shrink to content width */
  .dropdown-menu[data-submenu="capacity"] .dropdown-menu__wrapper {
    width: max-content;
    max-width: calc(100vw - 40px);
  }

  .dropdown-menu[data-submenu="capacity"] .dropdown-menu__list_columns {
    grid-template-columns: repeat(4, max-content);
  }

  .dropdown-menu[data-submenu="capacity"] .dropdown-menu__link {
    width: max-content;
  }
}

/* Dropdown menu for info */
.dropdown-menu[data-submenu="info"] .dropdown-menu__list {
  grid-template-columns: 1fr;
}

.dropdown-menu__list_columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dropdown-menu__item {
  margin-bottom: 0;
}

.dropdown-menu__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #16457f;
  transition: color 0.3s ease;
}

.dropdown-menu__link:hover {
  color: #f65c2c;
}

.dropdown-menu__icon-wrapper {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin-right: 15px;
}

.dropdown-menu__icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

.dropdown-menu__text {
  flex: 1;
}

.dropdown-menu__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.dropdown-menu__link:hover .dropdown-menu__title {
  color: var(--color-accent-hover);
}

.dropdown-menu__desc {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Responsive dropdown menu */
@media screen and (max-width: 980px) {
  .dropdown-menu__list {
    grid-template-columns: 1fr;
  }
  
  .dropdown-menu__list_columns {
    grid-template-columns: 1fr;
  }
  
  .dropdown-menu[data-submenu="capacity"] .dropdown-menu__list {
    grid-template-columns: 1fr;
  }
}

/* End */


/* Start:/local/templates/glavman/css/layout/footer.css?17691666912936*/
/* Footer styles */

.site-footer {
  background-color: var(--color-primary);
  padding: 90px 0 120px;
  color: var(--color-text-light);
}

.site-footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.site-footer__col {
  flex: 1;
}

.site-footer__col_left {
  max-width: 300px;
}

.site-footer__logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin-bottom: 30px;
}

.site-footer__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-light);
}

.site-footer__text p {
  margin-bottom: 15px;
}

.site-footer__text p:last-child {
  margin-bottom: 0;
}

.site-footer__link {
  color: var(--color-text-light);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.site-footer__link:hover {
  color: var(--color-accent);
}

.site-footer__col_center {
  flex: 2;
}

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

.site-footer__menu-col {
  flex: 1;
  min-width: 150px;
}

.site-footer__menu-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--color-text-light);
}

.site-footer__menu-title a {
  color: var(--color-text-light);
  text-decoration: none;
}

.site-footer__menu-title a:hover {
  color: var(--color-accent);
}

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

.site-footer__menu-item {
  margin-bottom: 10px;
}

.site-footer__menu-link {
  font-size: 14px;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-base);
}

.site-footer__menu-link:hover {
  color: var(--color-accent);
}

.site-footer__contacts {
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__contacts p {
  margin-bottom: 10px;
}

.site-footer__contacts p:last-child {
  margin-bottom: 0;
}

.site-footer__col_right {
  max-width: 200px;
}

.site-footer__socials-list {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.site-footer__socials-item {
  margin: 0;
}

.site-footer__socials-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  transition: opacity var(--transition-base);
}

.site-footer__socials-link:hover {
  opacity: 0.7;
}

.site-footer__socials-icon {
  display: block;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .site-footer__menu {
    gap: 30px;
  }
}

@media screen and (max-width: 980px) {
  .site-footer {
    padding: 60px 0 80px;
  }

  .site-footer__wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .site-footer__col_left {
    max-width: 100%;
  }

  .site-footer__col_right {
    max-width: 100%;
  }

  .site-footer__menu {
    flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 640px) {
  .site-footer {
    padding: 40px 0 60px;
  }

  .site-footer__menu-col {
    min-width: 100%;
  }
}

/* End */
/* /local/templates/glavman/css/fonts.css?17691666892432 */
/* /local/templates/glavman/css/base.css?17708179922898 */
/* /local/templates/glavman/css/layout/header.css?177081803910438 */
/* /local/templates/glavman/css/layout/footer.css?17691666912936 */
