.prem {
      display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* ==========================================================
   1. VARIABLES
========================================================== */

:root {
  --container: 1400px;
  --black: #171717;
  --dark: #111111;
  --white: #ffffff;
  --text: #2d2d2d;
  --gray: #f5f5f5;
  --gold: #A88B5A;
  --transition: .35s ease;
  --radius: 4px;
}

/* ==========================================================
   2. RESET / BASE
========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

section {
  position: relative;
}

#sp-main-body,
#sp-component {
  padding: 0 !important;
}

.com-content-article,
.article-details,
.article-body {
  margin: 0 !important;
  padding: 0 !important;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================================
   3. TYPOGRAPHY
========================================================== */

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

p {
  margin-bottom: 25px;
}

/* ==========================================================
   4. HEADER
========================================================== */
#sp-header {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 99999;
}

#sp-header .container {
  max-width: 1400px !important;
}

#sp-logo,
#sp-menu,
#sp-top1 {
  display: flex;
  align-items: center;
}

#sp-logo {
  justify-content: flex-start;
}

#sp-menu {
  justify-content: center;
}

#sp-top1 {
  justify-content: flex-end;
}

.mk-logo img {
  height: 62px;
  width: auto;
}

#sp-menu a {
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
}

#sp-menu a:hover {
  color: var(--gold) !important;
}

.mk-header__actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
 /*   gap:20px;*/
    flex-wrap:nowrap;
}

.mk-header__actions img{
    width:20px;
    height:20px;
    display:block;
}

.mk-phone{
    white-space:nowrap;
    color:#fff;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
}


.mk-header-btn {
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.mk-header-btn:hover {
  background: #fff;
  color: #111;
}

/* ==========================================================
   5. BUTTONS
========================================================== */

.btn-main,
.btn-border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 38px;
  font-weight: 700;
}

.btn-main {
  background: #fff;
  color: #111;
}

.btn-main:hover {
  background: #ececec;
  color: #111;
}

.btn-border {
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
}

.btn-border:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  }

/* ==========================================================
   6. HERO
========================================================== */
/*
.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  padding-top: 135px;
  padding-bottom: 55px;
}*/
.hero-section {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 1px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero/hero-staff.jpg');
  background-size: cover;
  background-position: 68% center;
  z-index: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.90) 0%,
    rgba(0,0,0,.72) 42%,
    rgba(0,0,0,.24) 100%
  );
  z-index: 2;
}
/*
.hero-container{
    position:relative;
    z-index:3;
    min-height:90vh;
    display:flex;
    align-items:center;
}

.hero-content{
    padding-bottom:150px;
}*/

.hero-container {
    position: relative;
    z-index: 3;
    min-height: calc(100vh - 228px);
    display: flex;
    align-items: center;
}

.hero-content {
    padding-bottom: 20px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e2e2e2;
}

.hero-label::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-content h1 {
  max-width: 900px;
  margin-bottom: 32px;
  color: #fff;
  font-size: 62px;
  line-height: 1.08;
}

.hero-unique {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 720px;
  margin-bottom: 28px;
  padding: 24px 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
}

.hero-unique__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
}

.hero-unique strong {
  color: #fff;
}

.hero-unique div:last-child {
  color: #f1f1f1;
  font-size: 20px;
  line-height: 1.45;
}

.hero-content p {
  max-width: 700px;
  color: #ededed;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-buttons{
    margin-top:38px;
}
/*
.hero-features{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:5;
}
.hero-features {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;

    display: grid;
    grid-template-columns:
        0.72fr
        1.08fr
        1.18fr
        1.15fr
        0.87fr;

    min-height: 118px;
    background: rgba(0, 0, 0, .46);
    border-top: 1px solid rgba(255, 255, 255, .14);
}*/

/* ==========================================================
   8. RESPONSIVE
========================================================== */

@media (max-width: 1200px) {
  .mk-header__inner {
    gap: 22px;
  }

  .mk-nav {
    gap: 20px;
  }

  .mk-logo img {
    height: 54px;
  }

  .hero-content h1 {
    font-size: 58px;
  }
}

@media (max-width: 992px) {
  .mk-nav,
  .mk-header__actions {
    display: none;
  }

  .mk-header__inner {
    padding: 22px 24px;
  }

  .mk-logo img {
    height: 52px;
  }
}

/* ==========================================================
   9. MOBILE HERO FINAL
========================================================== */

@media (max-width: 576px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .mk-header__inner {
    padding: 24px 30px;
  }

  .mk-logo img {
    height: 58px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 0;
  }

  .hero-bg {
    background-position: 72% top;
    background-size: cover;
  }

  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.70) 48%,
      rgba(0,0,0,.28) 100%
    );
  }

  .hero-container {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 19px;
  }

  .hero-label {
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
  }

  .hero-label::before {
    width: 36px;
  }

  .hero-content h1 {
    max-width: 330px;
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 22px;
  }

  .hero-unique {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    max-width: 250px;
    padding: 0;
    margin-bottom: 22px;
    background: transparent;
    border: none;
    backdrop-filter: none;
  }

  .hero-unique__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    font-size: 24px;
  }

  .hero-unique div:last-child {
    font-size: 13px;
    line-height: 1.42;
  }

  .hero-content p {
    max-width: 255px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .hero-buttons {
    display: block;
    max-width: 255px;
  }

  .btn-main,
  .btn-border {
    width: 100%;
    height: 54px;
    font-size: 15px;
    white-space: nowrap;
    margin-bottom: 14px;
  }

  .hero-features {
    margin-top: 28px;
    padding: 26px 18px 30px;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .hero-feature {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 0 8px;
    border-right: 1px solid rgba(255,255,255,.18);
    border-bottom: none;
  }

  .hero-feature:last-child {
    border-right: none;
  }

  .hero-feature__icon {
    font-size: 27px;
  }

  .hero-feature span:last-child {
    font-size: 13px;
    line-height: 1.3;
  }
}
.mk-wedal-trigger {
  display: none !important;
}
/* ==========================================================
   10. WEDAL CALLBACK POPUP
========================================================== */

.mk-wedal-trigger {
  display: none !important;
}

.modal {
  z-index: 999999 !important;
  backdrop-filter: blur(6px);
}

.modal-backdrop {
  z-index: 999998 !important;
  background: rgba(0,0,0,.78) !important;
  opacity: 1 !important;
}

.modal-dialog {
  max-width: 620px !important;
  width: calc(100% - 40px);
  margin: 80px auto !important;
}

.modal-title{
	    color: white;
}
.control-label{
	color: white;
}
.modal-content {
  background: #161616 !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 8px !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.45) !important;
  overflow: hidden;
}

#WJCForm110 {
  background: transparent !important;
}

.wjcallbackform .form-validate .informtext {
  padding-bottom: 20px;
  color: aliceblue;
}

.mk-wedal-field input {
  background: #1d1d1d !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: #fff !important;
}

.mk-wedal-field input::placeholder {
  color: #8b8b8b;
}

.mk-wedal-submit {
  min-width: 170px;
  height: 52px;
  border-radius: 4px;
   background: #FFF !important;
}.mk-header__inner {
    width: min(1400px, calc(100% - 48px));
    min-height: 74px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.mk-logo {
    flex: 0 0 auto;
}

.mk-nav {
    margin-left: auto;
}
/* ==========================================================
   11. MOBILE HEADER / OFFCANVAS
========================================================== */

.mk-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
}

.mk-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

@media (max-width: 992px) {
  .mk-nav,
  .mk-header__actions {
    display: none !important;
  }

  .mk-mobile-toggle {
    display: flex !important;
  }

  .mk-header__inner {
    justify-content: space-between;
  }
}
/* MOBILE OFFCANVAS OPEN */
.offcanvas-menu {
  transform: translateX(100%);
  transition: .35s ease;
}

.offcanvas-menu.active,
body.offcanvas-active .offcanvas-menu {
  transform: translateX(0);
}
#sp-menu .sp-module-title {
  display: none !important;
}
@media (max-width: 992px) {

  #sp-top1 {
    display: none !important;
  }

  #sp-menu {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  #sp-menu .sp-megamenu-parent,
  #sp-menu .sp-module,
  #sp-menu .mod-menu {
    display: none !important;
  }

  #offcanvas-toggler,
  .offcanvas-toggler {
    display: flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.45);
  }

  .burger-icon > span,
  .offcanvas-toggler span {
    display: block !important;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: #fff !important;
  }
}
/* Скрываем обычные ссылки меню в шапке, оставляем только бургер */
#sp-menu .sp-megamenu-parent,
#sp-menu .mod-menu,
#sp-menu ul.menu {
  display: none !important;
}

/* Сам бургер оставляем видимым */
#sp-menu #offcanvas-toggler,
#sp-menu .offcanvas-toggler {
  display: flex !important;
}
@media (max-width: 992px) {
  #sp-menu .sp-megamenu-parent,
  #sp-menu .mod-menu,
  #sp-menu ul.menu {
    display: none !important;
  }

  #sp-menu #offcanvas-toggler,
  #sp-menu .offcanvas-toggler {
    display: flex !important;
  }
}
/* HEADER MENU */
#sp-menu ul.mod-menu {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-right: 15%;
}

#sp-menu ul.mod-menu li {
  list-style: none;
}

#sp-menu ul.mod-menu li a {
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

#sp-menu ul.mod-menu li a:hover,
#sp-menu ul.mod-menu li.active > a {
  color: var(--gold) !important;
}

/* на мобильной скрываем ссылки меню, оставляем бургер */
@media (max-width: 992px) {
  #sp-menu ul.mod-menu {
    display: none !important;
  }

  #offcanvas-toggler,
  .offcanvas-toggler {
    display: flex !important;
  }
}
@media (max-width:992px){

.mk-header__actions{
    gap:12px;
}

.mk-phone{
    font-size:14px;
}

.mk-header-btn{
    padding:10px 18px;
    font-size:13px;
}

}
/* MAX icon fix */
.mk-max {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.mk-max img {
  width: 24px !important;
  height: 24px !important;
  max-width: none !important;
  flex: 0 0 24px;
  object-fit: contain;
}

#sp-top1 {
  min-width: 430px;
}
/* ==========================================================
   MOBILE HEADER ACTIONS: MAX + PHONE ICON
========================================================== */

.mk-mobile-call {
  display: none;
}

@media (max-width: 992px) {

  #sp-top1 {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    min-width: auto !important;
  }

  .mk-header__actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .mk-phone,
  .mk-header-btn {
    display: none !important;
  }

  .mk-max {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .mk-max img {
    width: 24px !important;
    height: 24px !important;
    max-width: none !important;
  }

  .mk-mobile-call {
    width: 34px;
    height: 34px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(168,139,90,.65);
    border-radius: 50%;
  }

  .mk-mobile-call svg {
    width: 18px;
    height: 18px;
  }

  #sp-menu {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }
}
/* ==========================================================
   MOBILE HEADER FINAL
========================================================== */

.mk-mobile-call {
  display: none;
}

@media (max-width: 992px) {

  #sp-header .row {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
  }

  #sp-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  #sp-top1 {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-width: auto !important;
  }

  #sp-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  #sp-menu ul.mod-menu,
  #sp-menu .sp-megamenu-parent,
  #sp-menu .mod-menu {
    display: none !important;
  }

  .mk-header__actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
  }

  .mk-phone,
  .mk-header-btn {
    display: none !important;
  }

  .mk-logo img {
    height: 58px;
  }

  .mk-max {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .mk-max img {
    width: 24px !important;
    height: 24px !important;
    max-width: none !important;
  }

  .mk-mobile-call {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #fff;
    border: 1px solid rgba(168,139,90,.65);
    border-radius: 50%;
  }

  .mk-mobile-call svg {
    width: 18px;
    height: 18px;
  }

  #offcanvas-toggler,
  .offcanvas-toggler {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.45);
  }

  .burger-icon > span,
  .offcanvas-toggler span {
    background: #fff !important;
  }
}
/* ==========================================================
   MOBILE HEADER CUSTOM
========================================================== */

.mk-mobile-header {
  display: none;
}

@media (max-width: 992px) {

  #sp-header {
    display: none !important;
  }

  .mk-mobile-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mk-mobile-logo img {
    height: 58px;
    width: auto;
  }

  .mk-mobile-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mk-mobile-max,
  .mk-mobile-call,
  .mk-mobile-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .mk-mobile-max img {
    width: 24px;
    height: 24px;
  }

  .mk-mobile-call {
    width: 34px;
    height: 34px;
    color: #fff;
    border: 1px solid rgba(168,139,90,.65);
    border-radius: 50%;
  }

  .mk-mobile-call svg {
    width: 18px;
    height: 18px;
  }

  .mk-mobile-burger {
    width: 42px;
    height: 42px;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.45);
  }

  .mk-mobile-burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
  }
}
/* Цвет текста в offcanvas */
.offcanvas-menu,
.offcanvas-menu a,
.offcanvas-menu .nav-link,
.offcanvas-menu .mod-menu a,
.offcanvas-menu .menu a {
    color: #fff !important;
}

/* Активный пункт */
.offcanvas-menu .active > a,
.offcanvas-menu .current > a {
    color: #C9A86A !important;
}

/* Hover */
.offcanvas-menu a:hover {
    color: #C9A86A !important;
}
/* ===== Цвет мобильного меню ===== */

.offcanvas-menu {
    color: #fff !important;
}

.offcanvas-menu ul li a,
.offcanvas-menu .mod-menu a,
.offcanvas-menu .menu a,
.offcanvas-menu .nav-link {
    color: #fff !important;
    opacity: 1 !important;
}

.offcanvas-menu ul li.active > a,
.offcanvas-menu ul li.current > a {
    color: #C9A86A !important;
}

.offcanvas-menu a:hover {
    color: #C9A86A !important;
}
/* OFFCANVAS MENU COLORS */
.offcanvas-menu .offcanvas-inner ul.mod-menu li a {
  color: #fff !important;
  opacity: 1 !important;
}

.offcanvas-menu .offcanvas-inner ul.mod-menu li.active > a,
.offcanvas-menu .offcanvas-inner ul.mod-menu li.current > a {
  color: #C9A86A !important;
}

.offcanvas-menu .offcanvas-inner ul.mod-menu li a:hover {
  color: #C9A86A !important;
}
.offcanvas-menu,
.offcanvas-menu .offcanvas-inner {
  background: #111 !important;
}
/* Белый бургер */
.mk-mobile-burger span,
.offcanvas-toggler span,
.offcanvas-toggler span::before,
.offcanvas-toggler span::after {
    background: #fff !important;
}

/* Если бургер состоит из трех span */
.mk-mobile-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff !important;
}/* BURGER FINAL FIX */
.mk-mobile-burger {
  position: relative !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(255,255,255,.55) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mk-mobile-burger span {
  display: none !important;
}

.mk-mobile-burger::before,
.mk-mobile-burger::after {
  content: "" !important;
  position: absolute !important;
  left: 10px !important;
  width: 22px !important;
  height: 2px !important;
  background: #fff !important;
}

.mk-mobile-burger::before {
  top: 14px !important;
  box-shadow: 0 7px 0 #fff !important;
}

.mk-mobile-burger::after {
  top: 28px !important;
}
.hero-buttons{
    margin-top:48px;
}

.hero-call{
    min-width:340px;
    justify-content:center;
    display:inline-flex;
    align-items:center;
    gap:12px;
}.mk-header-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    margin-left:16px;
    margin-right:28px;
}

.mk-header-phones{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.mk-header-phones a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
    transition:.3s;
}

.mk-header-phones a:hover{
    color:var(--gold);
}

.mk-header-address{
    color:rgba(255,255,255,.72);
    font-size:13px;
    line-height:1.45;
    letter-spacing:.04em;
}.mk-header-grid{
    display:grid;
    grid-template-columns:auto auto;
    column-gap:36px;
    align-items:start;
    margin-left:18px;
    margin-right:28px;
}

.mk-header-col{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.mk-header-title{
    color:var(--gold);
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:4px;
  text-align:center;
}

.mk-header-col a,
.mk-header-col span{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    line-height:1.45;
    white-space:nowrap;
}

.mk-header-col a:hover{
    color:var(--gold);
}
.mk-logo-top{
    font-size:11px;
    letter-spacing:.45em;
    color:var(--gold);
    text-transform:uppercase;
    margin-bottom:6px;
    font-weight:500;
  margin-left: 25%;
}

.mk-logo-name{
    font-family:"Cormorant Garamond", serif;
    font-size:24px;
    font-weight:500;
    line-height:.9;
    letter-spacing:.01em;
    color:#fff;
}
/* ==========================================================
   HEADER TOPBAR
========================================================== */

.mk-topbar {
    position: relative;
    z-index: 20;
    width: 100%;
    background: rgba(0, 0, 0,.90);
    border-bottom: 0px solid rgba(255, 255, 255, .09);
      padding-top: 12px;
}

.mk-topbar__inner{

    width:min(1400px, calc(100% - 48px));
    margin:0 auto;

    display:grid;
    grid-template-columns:auto auto auto;
    justify-content:center;
    align-items:center;
    column-gap:70px;
}

.mk-topbar__max,
.mk-topbar__phones,
.mk-topbar__address {
    display: flex;
    align-items: center;
}

.mk-topbar__max {
    gap: 9px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.mk-topbar__max img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.mk-topbar__phones,
.mk-topbar__address {
    gap: 14px;
}

.mk-topbar__label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.mk-topbar__phones-list {
    display: flex;
    gap: 20px;
}

.mk-topbar__phones a,
.mk-topbar__address div {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
}

.mk-topbar__phones a:hover,
.mk-topbar__max:hover {
    color: var(--gold);
}

/* Верхняя контактная строка должна быть выше остальных слоёв */
.mk-topbar {
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}

.mk-topbar__inner,
.mk-topbar__max,
.mk-topbar__phones,
.mk-topbar__phones-list,
.mk-topbar__address {
    position: relative;
    z-index: 10000;
    pointer-events: auto;
}

.mk-topbar a {
    position: relative;
    z-index: 10001;
    pointer-events: auto !important;
    cursor: pointer;
}

/* Нижняя строка шапки располагается ниже topbar */
.mk-header {
    position: relative;
    z-index: 9000;
}

/* Фоновые слои Hero не должны перехватывать клики */
.hero-bg,
.hero-shade,
.hero-section::before,
.hero-section::after {
    pointer-events: none !important;
}
.mk-header {
    margin-top: 0 !important;
}

.mk-header__inner {
    position: relative;
    z-index: 1;
}

.mk-nav {
    position: relative;
    z-index: 1;
}
/* Верхняя контактная строка */
.mk-topbar{
    position: relative !important;
    z-index: 30 !important;
    height: 48px;
}

/* Строка с логотипом и меню 
.mk-header{
    position: relative !important;
    z-index: 20 !important;
    height: 72px;
    margin: 0 !important;
}
*/
/* Запрещаем меню подниматься в верхнюю строку */
.mk-header__inner,
.mk-nav,
.mk-header__actions{
    top: auto !important;
    transform: none !important;
    margin-top: 0 !important;
}

/* Сама навигация не должна выходить за пределы строки */
.mk-header{
    overflow: hidden;
}
.op{margin-left:37%;}
@media (min-width: 993px){

    .mk-logo-top{
        font-size:12px;
        letter-spacing:6px;
    }

    .mk-logo-name{
        font-size:42px;
        line-height:.9;
        font-weight:500;
    }

    .mk-logo{
        min-width:300px;
    }

}
/*20,07,*/
@media (max-width:767px){
#sp-section-5 .container {
    padding-left: 0;
    padding-right: 0;
}
  .op
 {
    margin-left: 10%;
}
  .hero-call {
    min-width: 250px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
}
/*21,07*/
/* Offcanvas должен находиться поверх страницы и затемнения */

.offcanvas-overlay {
    z-index: 9998 !important;
}

.offcanvas-menu {
    position: fixed !important;
    z-index: 9999 !important;
}
/* ===========================================
   HERO - преимущества на мобильных
=========================================== */

@media (max-width:576px){

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:0;
}

.hero-feature{
    min-height:150px;

    display:grid;
    grid-template-rows:
        36px      /* иконка */
        42px      /* заголовок */
        auto;     /* описание */

    justify-items:center;
    align-items:start;

    padding:18px 12px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);
    border-right:1px solid rgba(255,255,255,.08);
}

.hero-feature:nth-child(2n){
    border-right:none;
}

.hero-feature-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
    margin:0;
    font-size:22px;
}

.hero-feature-title{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0;
    font-size:20px;
    font-weight:700;
    line-height:1;
}

.hero-feature-text{
    margin-top:8px;
    font-size:15px;
    line-height:1.35;
}
  #mod-custom123{margin-left:-21px;}
}