.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;}
}
/* Выпадающее меню в компьютерной версии */
@media (min-width: 992px) {

    /* Родительский пункт */
    .sp-megamenu-parent > li {
        position: relative;
    }

    /* Не переносим название пункта меню */
    .sp-megamenu-parent > li > a,
    .sp-megamenu-parent > li > span {
        white-space: nowrap;
    }

    /* Выпадающий список */
    .sp-megamenu-parent > li > .sp-dropdown {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 230px;
        min-width: 230px;
        margin: 0 !important;
        padding-top: 12px;
        display: block !important;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);

        z-index: 9999;
        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s ease;
    }

    /* Показываем подменю при наведении */
    .sp-megamenu-parent > li:hover > .sp-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* Оформление внутренней части подменю */
    .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
        padding: 10px 0;
        background: #151515;
        border: 1px solid rgba(180, 143, 74, 0.45);
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
    }

    /* Дочерние пункты */
    .sp-megamenu-parent .sp-dropdown li {
        display: block !important;
        width: 100%;
    }

    .sp-megamenu-parent .sp-dropdown li > a {
        display: block;
        width: 100%;
        padding: 12px 20px;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.4;
        white-space: nowrap;
    }

    .sp-megamenu-parent .sp-dropdown li > a:hover {
        color: #b48f4a;
        background: rgba(180, 143, 74, 0.08);
    }
}
.mk-mobile-call svg {
    width: 18px;
    height: 18px;
    color: black;
}
.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;
}
#sp-menu ul.mod-menu li a {
    color: #000 !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}
   .mk-logo-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 500;
    line-height: .9;
    letter-spacing: .01em;
    color: #000;
}
.mk-topbar__max {
    gap: 9px;
    color: var(--gold);;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.mk-topbar__phones a, .mk-topbar__address div {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
}
.mk-topbar {
    position: relative;
    z-index: 20;
    width: 100%;
    background: #f7f3eb;
    border-bottom: 0px solid rgba(255, 255, 255, .09);
    padding-top: 12px;
}
/* ==========================================================
   HERO — ПОДБОР НЯНИ
   ========================================================== */

.nanny-hero {
    position: relative;
    width: 100%;
    min-height: 760px;
    overflow: hidden;

    background: #f7f2eb;
    color: #29251f;
}


/* ==========================================================
   ФОНОВОЕ ИЗОБРАЖЕНИЕ
   ========================================================== */

.nanny-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;

    background-image: url("https://super-staff.ru/images/hero/ero-nanny.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    pointer-events: none;
}


/* ==========================================================
   СВЕТЛЫЙ ПЕРЕХОД СЛЕВА К ФОТО
   ========================================================== */

.nanny-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(
        90deg,
        rgba(248,244,237,1) 0%,
        rgba(248,244,237,.99) 26%,
        rgba(248,244,237,.94) 39%,
        rgba(248,244,237,.75) 50%,
        rgba(248,244,237,.38) 61%,
        rgba(248,244,237,.08) 73%,
        rgba(248,244,237,0) 100%
    );

    pointer-events: none;
}


/* ==========================================================
   КОНТЕЙНЕР
   ========================================================== */

.nanny-hero__container {
    position: relative;
    z-index: 3;

    min-height: 760px;

    display: flex;
    align-items: center;

    padding-top: 70px;
    padding-bottom: 42px;
}


/* ==========================================================
   ТЕКСТОВАЯ ОБЛАСТЬ
   ========================================================== */

.nanny-hero__content {
    width: 100%;
    max-width: 690px;
}


/* ==========================================================
   ХЛЕБНЫЕ КРОШКИ
   ========================================================== */

.nanny-hero__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;

    margin: 0 0 26px;

    color: #766f67;
    font-size: 12px;
    line-height: 1.4;
}

.nanny-hero__breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.nanny-hero__breadcrumbs a:hover {
    color: #b08a48;
}


/* ==========================================================
   НАДЗАГОЛОВОК
   ========================================================== */

.nanny-hero__label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 0 0 20px;

    color: #b08a48;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.nanny-hero__label::before {
    content: "";

    display: block;

    width: 38px;
    height: 1px;

    background: #b08a48;
}


/* ==========================================================
   H1
   ========================================================== */

.nanny-hero__title {
    width: 100%;
    max-width: 690px;

    margin: 0 0 25px;

    color: #29251f;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(58px, 4.6vw, 78px);
    font-weight: 500;
    line-height: .98;

    letter-spacing: -.025em;
}


/* ==========================================================
   ОПИСАНИЕ
   ========================================================== */

.nanny-hero__text {
    width: 100%;
    max-width: 620px;

    margin: 0 0 27px;

    color: #504a43;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}


/* ==========================================================
   4 ПРОВЕРКИ
   ========================================================== */

.nanny-hero__checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: 100%;
    max-width: 620px;

    gap: 11px 28px;

    margin: 0 0 31px;
}

.nanny-hero__check {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #3f3933;

    font-size: 14px;
    line-height: 1.4;
}

.nanny-hero__check > span {
    flex: 0 0 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;

    border: 1px solid rgba(176,138,72,.55);
    border-radius: 50%;

    color: #b08a48;

    font-size: 12px;
    font-weight: 700;
}


/* ==========================================================
   КНОПКА
   ========================================================== */

.nanny-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 245px;
    min-height: 56px;

    padding: 16px 30px;

    border: 1px solid #b08a48;

    background: #b08a48;
    color: #fff !important;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none !important;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.nanny-hero__button:hover {
    background: #9d783d;
    border-color: #9d783d;

    color: #fff !important;

    transform: translateY(-2px);
}
/* ==========================================================
   ПРЕИМУЩЕСТВА ВНУТРИ HERO НЯНИ
========================================================== */

.nanny-hero__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    width: 100%;
    max-width: 700px;

    margin-top: 48px;
    padding-top: 25px;

    border-top: 1px solid rgba(176, 138, 72, 0.28);
}

.nanny-hero__benefit {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 0;
    padding: 0 24px;

    border-right: 1px solid rgba(176, 138, 72, 0.25);
}

.nanny-hero__benefit:first-child {
    padding-left: 0;
}

.nanny-hero__benefit:last-child {
    padding-right: 0;
    border-right: 0;
}

/* Иконка */

.nanny-hero__benefit-icon {
    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    color: #b08a48;
}

.nanny-hero__benefit-icon svg {
    width: 38px;
    height: 38px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Текст */

.nanny-hero__benefit-text {
    min-width: 0;
}

.nanny-hero__benefit-text strong {
    display: block;

    margin: 0 0 5px;

    color: #302a24;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.nanny-hero__benefit-text span {
    display: block;

    color: #6a6259;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
}

/* ==========================================================
   ПЛАНШЕТ
========================================================== */

@media (max-width: 991px) {

    .nanny-hero__benefits {
        max-width: 650px;
        margin-top: 38px;
    }

    .nanny-hero__benefit {
        padding: 0 16px;
        gap: 11px;
    }

    .nanny-hero__benefit-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .nanny-hero__benefit-icon svg {
        width: 34px;
        height: 34px;
    }

    .nanny-hero__benefit-text strong {
        font-size: 13px;
    }

    .nanny-hero__benefit-text span {
        font-size: 10px;
    }
}

/* ==========================================================
   ТЕЛЕФОН
========================================================== */

@media (max-width: 575px) {

    .nanny-hero__benefits {
        grid-template-columns: 1fr;

        margin-top: 34px;
        padding-top: 8px;

        border-top: 1px solid rgba(176, 138, 72, 0.25);
    }
	.nanny-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;

    background-image: url("https://super-staff.ru/images/hero/ero-nanny1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    pointer-events: none;
	}


    .nanny-hero__benefit,
    .nanny-hero__benefit:first-child,
    .nanny-hero__benefit:last-child {
        min-height: 82px;
        padding: 16px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(176, 138, 72, 0.20);
    }

    .nanny-hero__benefit:last-child {
        border-bottom: 0;
    }

    .nanny-hero__benefit-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .nanny-hero__benefit-text strong {
        font-size: 14px;
    }

    .nanny-hero__benefit-text span {
        font-size: 12px;
    }
}
/* ==========================================================
   ПЛАНШЕТ
   ========================================================== */

@media (max-width: 991px) {

    .nanny-hero {
        min-height: 700px;
    }

    .nanny-hero__bg {
        background-position: 66% center;
    }

    .nanny-hero__container {
        min-height: 700px;

        padding: 65px 30px 40px;
    }

    .nanny-hero__content {
        max-width: 570px;
    }

    .nanny-hero__title {
        max-width: 570px;

        font-size: 58px;
    }

    .nanny-hero__text {
        max-width: 540px;

        font-size: 15px;
    }

    .nanny-hero__checks {
        max-width: 540px;
    }

    .nanny-hero__benefits {
        max-width: 600px;
    }

}


/* ==========================================================
   МОБИЛЬНЫЙ — ДО 767px
   ========================================================== */

@media (max-width: 767px) {

    .nanny-hero {
        min-height: auto;
    }

    /*
       На телефоне сохраняем фотографию фоном,
       но двигаем её вправо.
    */
    .nanny-hero__bg {
        background-size: cover;
        background-position: 64% center;
    }

    /*
       Цвета не меняем.
       Просто делаем слева достаточно плотную область
       для чтения текста.
    */
    .nanny-hero__shade {
        background: linear-gradient(
            90deg,
            rgba(248,244,237,.96) 0%,
            rgba(248,244,237,.91) 55%,
            rgba(248,244,237,.65) 77%,
            rgba(248,244,237,.38) 100%
        );
    }

    .nanny-hero__container {
        min-height: auto;

        display: block;

        padding: 46px 22px 38px;
    }

    .nanny-hero__content {
        max-width: 100%;
		
        margin: 52px 0 0 0
    }

    .nanny-hero__breadcrumbs {
        margin-bottom: 23px;

        font-size: 11px;
    }

    .nanny-hero__label {
        margin-bottom: 16px;

        font-size: 10px;
        letter-spacing: .15em;
    }

    .nanny-hero__label::before {
        width: 28px;
    }

    .nanny-hero__title {
        max-width: 100%;

        margin-bottom: 22px;

        font-size: clamp(43px, 12vw, 54px);
        line-height: 1;

        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .nanny-hero__text {
        max-width: 100%;

        margin-bottom: 24px;

        font-size: 14px;
        line-height: 1.6;
    }

    .nanny-hero__checks {
        grid-template-columns: 1fr;

        max-width: 100%;

        gap: 9px;

        margin-bottom: 27px;
    }

    .nanny-hero__check {
        font-size: 13px;
    }

    .nanny-hero__button {
        width: 100%;
        min-width: 0;

        min-height: 54px;
    }

    /*
       Преимущества на мобильном:
       3 строки, чтобы текст хорошо читался.
    */
    .nanny-hero__benefits {
        grid-template-columns: 1fr;

        max-width: 100%;

        margin-top: 31px;
        padding-top: 6px;
    }

    .nanny-hero__benefit,
    .nanny-hero__benefit:first-child,
    .nanny-hero__benefit:last-child {
        min-height: 79px;

        padding: 15px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(176,138,72,.20);
    }

    .nanny-hero__benefit:last-child {
        border-bottom: 0;
    }

    .nanny-hero__benefit-icon {
        flex: 0 0 40px;

        width: 40px;
        height: 40px;
    }

    .nanny-hero__benefit-content strong {
        font-size: 14px;
    }

    .nanny-hero__benefit-content span {
        font-size: 12px;
    }

}


/* ==========================================================
   ОЧЕНЬ УЗКИЕ ТЕЛЕФОНЫ
   ========================================================== */

@media (max-width: 390px) {

    .nanny-hero__container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nanny-hero__title {
        font-size: 42px;
    }

    .nanny-hero__text {
        font-size: 13px;
    }

}

/* ==========================================================
   БЛОК 2 — ПОЧЕМУ СЕМЬИ ОБРАЩАЮТСЯ К НАМ
========================================================== */

.nanny-why-row {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f8f5ef;
}

.nanny-why-row > .container,
.nanny-why-row > .container-fluid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.nanny-why-row .row,
.nanny-why-row [class*="col-"],
.nanny-why-row .sp-column,
.nanny-why-row .sp-module,
.nanny-why-row .sp-module-content,
.nanny-why-row .custom,
.nanny-why-row .mod-custom {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}


/* сам блок */

.nanny-why {
    width: 100%;
    padding: 85px 40px 90px;
    background: #f8f5ef;
}


/* внутренний контейнер */

.nanny-why__grid {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);

    gap: 75px;
    align-items: center;
}


/* ==========================================================
   ЛЕВАЯ ЧАСТЬ
========================================================== */

.nanny-why__content {
    max-width: 540px;
}


/* надзаголовок */

.nanny-why__label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 0 0 17px;

    color: #b08a48;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.nanny-why__label::before {
    content: "";

    width: 36px;
    height: 1px;

    background: #b08a48;
}


/* H2 */

.nanny-why__title {
    max-width: 530px;

    margin: 0 0 22px;

    color: #29251f;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.02;

    letter-spacing: -.015em;
}


/* вводный текст */

.nanny-why__intro {
    max-width: 500px;

    margin: 0 0 30px;

    color: #615a52;

    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================================
   СПИСОК
========================================================== */

.nanny-why__list {
    display: grid;
    gap: 13px;
}

.nanny-why__item {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    color: #3f3933;

    font-size: 14px;
    line-height: 1.5;
}

.nanny-why__icon {
    flex: 0 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    margin-top: 1px;

    border: 1px solid rgba(176, 138, 72, .55);
    border-radius: 50%;

    color: #b08a48;

    font-size: 11px;
    font-weight: 700;
}


/* ==========================================================
   ФОТО
========================================================== */

.nanny-why__photo {
    width: 100%;
    overflow: hidden;

    border-radius: 18px;
}

.nanny-why__photo img {
    display: block;

    width: 100%;
    height: 430px;

    object-fit: cover;
    object-position: center;

    transition: transform .45s ease;
}

@media (hover: hover) {

    .nanny-why__photo:hover img {
        transform: scale(1.015);
    }
}


/* ==========================================================
   ПЛАНШЕТ
========================================================== */

@media (max-width: 991px) {

    .nanny-why {
        padding: 70px 30px;
    }

    .nanny-why__grid {
        gap: 45px;
    }

    .nanny-why__title {
        font-size: 42px;
    }

    .nanny-why__photo img {
        height: 390px;
    }
}


/* ==========================================================
   МОБИЛЬНЫЙ
========================================================== */

@media (max-width: 767px) {

    .nanny-why {
        padding: 55px 22px 60px;
    }

    .nanny-why__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .nanny-why__content {
        max-width: none;
    }

    .nanny-why__title {
        max-width: none;

        font-size: 38px;
        line-height: 1.03;
    }

    .nanny-why__intro {
        font-size: 14px;
    }

    .nanny-why__item {
        font-size: 13px;
    }

    .nanny-why__photo {
        border-radius: 14px;
    }

    .nanny-why__photo img {
        height: 280px;
    }
}
/* ==========================================================
   БЛОК 3 — КАКИХ НЯНЬ МЫ ПОДБИРАЕМ
========================================================== */

.nanny-types-row {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fbfaf7;
}

.nanny-types-row > .container,
.nanny-types-row > .container-fluid {
    width: 100%;
    max-width: none;
    padding: 0;
}

.nanny-types-row .row,
.nanny-types-row [class*="col-"],
.nanny-types-row .sp-column,
.nanny-types-row .sp-module,
.nanny-types-row .sp-module-content,
.nanny-types-row .custom,
.nanny-types-row .mod-custom {
    margin: 0;
    padding: 0;
}


/* БЛОК */

.nanny-types {
    width: 100%;
    padding: 75px 40px 70px;
    background: #fbfaf7;
}

.nanny-types__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* ==========================================================
   ЗАГОЛОВОК
========================================================== */

.nanny-types__heading {
    margin: 0 auto 42px;
    text-align: center;
}

.nanny-types__label {
    margin-bottom: 12px;

    color: #b08a48;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.nanny-types__title {
    margin: 0;

    color: #29251f;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.05;
}

.nanny-types__intro {
    max-width: 560px;

    margin: 15px auto 0;

    color: #71695f;

    font-size: 14px;
    line-height: 1.6;
}


/* ==========================================================
   КАРТОЧКИ
========================================================== */

.nanny-types__grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.nanny-types__card {
    min-height: 190px;

    padding: 28px 22px 25px;

    background: #fff;

    border: 1px solid rgba(176, 138, 72, .12);
    border-radius: 10px;

    box-shadow:
        0 8px 28px rgba(53, 43, 29, .055);

    text-align: center;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


@media (hover: hover) {

    .nanny-types__card:hover {
        transform: translateY(-4px);

        border-color: rgba(176, 138, 72, .35);

        box-shadow:
            0 14px 35px rgba(53, 43, 29, .09);
    }
}


/* ИКОНКА */

/* ==========================================================
   SVG-ИКОНКИ КАРТОЧЕК НЯНЬ
========================================================== */

.nanny-types__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin: 0 auto 14px;

    color: #c79a4a;
}

.nanny-types__icon svg {
    display: block;

    width: 36px;
    height: 36px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* НАЗВАНИЕ */

.nanny-types__card h3 {
    margin: 0 0 10px;

    color: #29251f;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}


/* ОПИСАНИЕ */

.nanny-types__card p {
    margin: 0;

    color: #777067;

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================
   ПОКАЗАТЬ ВСЕ
========================================================== */

.nanny-types__more {
    margin-top: 25px;

    text-align: center;
}

.nanny-types__more-btn {
    padding: 5px 10px;

    border: 0;
    background: transparent;

    color: #514b44;

    font-size: 13px;

    cursor: pointer;
}

.nanny-types__more-btn span {
    display: inline-block;

    margin-left: 7px;

    color: #b08a48;
    font-size: 16px;
}


/* ==========================================================
   ПЛАНШЕТ
========================================================== */

@media (max-width: 991px) {

    .nanny-types {
        padding: 65px 30px;
    }

    .nanny-types__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nanny-types__title {
        font-size: 42px;
    }
}


/* ==========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
========================================================== */

@media (max-width: 575px) {

    .nanny-types {
        padding: 55px 20px;
    }

    .nanny-types__heading {
        margin-bottom: 30px;
    }

    .nanny-types__title {
        font-size: 38px;
    }

    .nanny-types__intro {
        font-size: 14px;
    }

    .nanny-types__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nanny-types__card {
        min-height: 0;

        padding: 22px 18px;

        display: grid;
        grid-template-columns: 44px 1fr;
        column-gap: 15px;

        text-align: left;
    }

    .nanny-types__icon {
        grid-row: 1 / 3;

        margin: 0;

        width: 40px;
        height: 40px;
    }

    .nanny-types__card h3 {
        margin: 0 0 5px;
    }

    .nanny-types__card h3 br,
    .nanny-types__card p br {
        display: none;
    }

    .nanny-types__more {
        margin-top: 20px;
    }
}
/* ==========================================================
   БЛОК 4 — КАК ПРОХОДИТ ПОДБОР НЯНИ
========================================================== */

.nanny-process-row {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f8f5ef;
}

.nanny-process-row > .container,
.nanny-process-row > .container-fluid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.nanny-process-row .row,
.nanny-process-row [class*="col-"],
.nanny-process-row .sp-column,
.nanny-process-row .sp-module,
.nanny-process-row .sp-module-content,
.nanny-process-row .custom,
.nanny-process-row .mod-custom {
    margin: 0;
    padding: 0;
}


/* общий блок */

.nanny-process {
    width: 100%;
    padding: 78px 40px 85px;
    background: #f8f5ef;
}

.nanny-process__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* ==========================================================
   ЗАГОЛОВОК
========================================================== */

.nanny-process__heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.nanny-process__label {
    margin-bottom: 12px;

    color: #b08a48;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.nanny-process__title {
    margin: 0;

    color: #29251f;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.05;
}

.nanny-process__intro {
    max-width: 600px;
    margin: 16px auto 0;

    color: #71695f;

    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================
   ШАГИ
========================================================== */

.nanny-process__steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 0;
}


/* линия между шагами */

.nanny-process__steps::before {
    content: "";

    position: absolute;

    top: 21px;
    left: 8%;
    right: 8%;

    height: 1px;

    background: rgba(176,138,72,.30);

    z-index: 0;
}


.nanny-process__step {
    position: relative;
    z-index: 1;

    padding: 0 14px;

    text-align: center;
}


/* номер */

.nanny-process__number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #b08a48;
    color: #fff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;

    box-shadow: 0 0 0 8px #f8f5ef;
}


/* заголовок шага */

.nanny-process__step h3 {
    margin: 0 0 10px;

    color: #29251f;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}


/* описание */

.nanny-process__step p {
    margin: 0;

    color: #756e66;

    font-size: 11px;
    line-height: 1.55;
}


/* ==========================================================
   ПЛАНШЕТ
========================================================== */

@media (max-width: 991px) {

    .nanny-process {
        padding: 65px 30px 70px;
    }

    .nanny-process__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 42px 10px;
    }

    .nanny-process__steps::before {
        display: none;
    }

    .nanny-process__step {
        padding: 0 18px;
    }

    .nanny-process__title {
        font-size: 42px;
    }
}


/* ==========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
========================================================== */

@media (max-width: 575px) {

    .nanny-process {
        padding: 55px 20px 60px;
    }

    .nanny-process__heading {
        margin-bottom: 35px;
        text-align: left;
    }

    .nanny-process__title {
        font-size: 38px;
    }

    .nanny-process__intro {
        margin-left: 0;
        margin-right: 0;

        font-size: 14px;
    }

    .nanny-process__steps {
        display: block;
    }

    .nanny-process__step {
        position: relative;

        min-height: 105px;

        padding: 0 0 28px 64px;

        text-align: left;
    }

    .nanny-process__step:last-child {
        padding-bottom: 0;
    }

    .nanny-process__number {
        position: absolute;

        left: 0;
        top: 0;

        width: 40px;
        height: 40px;

        margin: 0;

        box-shadow: 0 0 0 6px #f8f5ef;
    }

    /* вертикальная линия */
    .nanny-process__step:not(:last-child)::after {
        content: "";

        position: absolute;

        left: 19px;
        top: 44px;

        width: 1px;
        height: calc(100% - 38px);

        background: rgba(176,138,72,.30);
    }

    .nanny-process__step h3 {
        padding-top: 2px;

        font-size: 15px;
    }

    .nanny-process__step p {
        max-width: 280px;

        font-size: 12px;
    }
}
/* ==========================================================
   БЛОК 5 — FAQ
========================================================== */

.nanny-faq-row {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fbfaf7;
}

.nanny-faq-row > .container,
.nanny-faq-row > .container-fluid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.nanny-faq-row .row,
.nanny-faq-row [class*="col-"],
.nanny-faq-row .sp-column,
.nanny-faq-row .sp-module,
.nanny-faq-row .sp-module-content,
.nanny-faq-row .custom,
.nanny-faq-row .mod-custom {
    margin: 0;
    padding: 0;
}


/* общий блок */

.nanny-faq {
    width: 100%;
    padding: 75px 40px 85px;
    background: #fbfaf7;
}

.nanny-faq__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* заголовок */

.nanny-faq__heading {
    margin: 0 auto 40px;
    text-align: center;
}

.nanny-faq__label {
    margin-bottom: 12px;

    color: #b08a48;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.nanny-faq__title {
    margin: 0;

    color: #29251f;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.05;
}


/* сетка */

.nanny-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
}


/* один вопрос */

.nanny-faq__item {
    background: #fff;

    border: 1px solid rgba(176,138,72,.12);
    border-radius: 8px;

    box-shadow:
        0 5px 20px rgba(50,40,28,.035);

    overflow: hidden;
}


/* summary */

.nanny-faq__item summary {
    position: relative;

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

    min-height: 58px;

    padding: 15px 20px;

    color: #342f29;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;

    cursor: pointer;

    list-style: none;
}

.nanny-faq__item summary::-webkit-details-marker {
    display: none;
}


/* плюс */

.nanny-faq__item summary span {
    flex: 0 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    color: #b08a48;

    font-size: 21px;
    font-weight: 300;

    transition: transform .25s ease;
}


/* открытый вопрос */

.nanny-faq__item[open] summary span {
    transform: rotate(45deg);
}


/* ответ */

.nanny-faq__answer {
    padding: 0 20px 19px;

    color: #71695f;

    font-size: 13px;
    line-height: 1.65;
}


/* hover */

@media (hover: hover) {

    .nanny-faq__item {
        transition:
            border-color .25s ease,
            box-shadow .25s ease;
    }

    .nanny-faq__item:hover {
        border-color: rgba(176,138,72,.32);

        box-shadow:
            0 9px 28px rgba(50,40,28,.06);
    }
}


/* ==========================================================
   ПЛАНШЕТ
========================================================== */

@media (max-width: 991px) {

    .nanny-faq {
        padding: 65px 30px 70px;
    }

    .nanny-faq__title {
        font-size: 42px;
    }
}


/* ==========================================================
   МОБИЛЬНЫЙ
========================================================== */

@media (max-width: 575px) {

    .nanny-faq {
        padding: 55px 20px 60px;
    }

    .nanny-faq__heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .nanny-faq__title {
        font-size: 38px;
    }

    .nanny-faq__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nanny-faq__item summary {
        min-height: 56px;

        padding: 14px 16px;

        font-size: 13px;
    }

    .nanny-faq__answer {
        padding: 0 16px 17px;

        font-size: 12px;
    }
}/* ==========================================================
   ПОСЛЕДНИЙ БЛОК — КОНТАКТЫ
========================================================== */

.nanny-contact-row {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f8f5ef;
}

.nanny-contact-row > .container,
.nanny-contact-row > .container-fluid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.nanny-contact-row .row,
.nanny-contact-row [class*="col-"],
.nanny-contact-row .sp-column,
.nanny-contact-row .sp-module,
.nanny-contact-row .sp-module-content,
.nanny-contact-row .custom,
.nanny-contact-row .mod-custom {
    margin: 0;
    padding: 0;
}


/* ==========================================================
   ОСНОВНОЙ БЛОК
========================================================== */

.nanny-contact {
    width: 100%;
    padding: 80px 40px 85px;

    background: #f8f5ef;
}

.nanny-contact__inner {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
}


/* ==========================================================
   ЗАГОЛОВОК
========================================================== */

.nanny-contact__heading {
    max-width: 820px;

    margin: 0 0 46px;
}

.nanny-contact__label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 0 0 15px;

    color: #b08a48;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.nanny-contact__label::before {
    content: "";

    width: 36px;
    height: 1px;

    background: #b08a48;
}

.nanny-contact__title {
    max-width: 820px;

    margin: 0;

    color: #29251f;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.04;

    letter-spacing: -.015em;
}

.nanny-contact__intro {
    max-width: 620px;

    margin: 18px 0 0;

    color: #71695f;

    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================
   КАРТОЧКИ
========================================================== */

.nanny-contact__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.nanny-contact__card {
    display: flex;
    align-items: flex-start;
    gap: 17px;

    min-height: 180px;

    padding: 30px 28px;

    background: #fff;

    border: 1px solid rgba(176,138,72,.15);
    border-radius: 10px;

    box-shadow:
        0 8px 30px rgba(49,39,27,.045);
}


/* ==========================================================
   ИКОНКА
========================================================== */

.nanny-contact__icon {
    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    color: #b08a48;
}

.nanny-contact__icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   ТЕКСТ
========================================================== */

.nanny-contact__content {
    min-width: 0;
}

.nanny-contact__caption {
    display: block;

    margin-bottom: 8px;

    color: #b08a48;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.nanny-contact__content strong {
    display: block;

    margin-bottom: 5px;

    color: #29251f;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.nanny-contact__content strong + strong {
    margin-top: 4px;
}

.nanny-contact__content a {
    color: #29251f;
    text-decoration: none;
}

.nanny-contact__content a:hover {
    color: #b08a48;
}

.nanny-contact__content p {
    margin: 7px 0 0;

    color: #71695f;

    font-size: 13px;
    line-height: 1.55;
}


/* ==========================================================
   НИЖНЯЯ CTA-СТРОКА
========================================================== */

.nanny-contact__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    margin-top: 22px;

    padding: 28px 32px;

    background: #2b2722;

    border-radius: 10px;
}

.nanny-contact__bottom-text strong {
    display: block;

    margin-bottom: 5px;

    color: #fff;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
}

.nanny-contact__bottom-text span {
    color: rgba(255,255,255,.72);

    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================================
   КНОПКА
========================================================== */

.nanny-contact__button {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 230px;
    min-height: 54px;

    padding: 15px 28px;

    background: #b08a48;
    border: 1px solid #b08a48;

    color: #fff !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.nanny-contact__button:hover {
    background: #9d783d;
    border-color: #9d783d;

    transform: translateY(-2px);
}


/* ==========================================================
   ПЛАНШЕТ
========================================================== */

@media (max-width: 991px) {

    .nanny-contact {
        padding: 65px 30px 70px;
    }

    .nanny-contact__title {
        font-size: 42px;
    }

    .nanny-contact__grid {
        grid-template-columns: 1fr 1fr;
    }

    .nanny-contact__card:last-child {
        grid-column: 1 / -1;
    }
}


/* ==========================================================
   МОБИЛЬНЫЙ
========================================================== */

@media (max-width: 575px) {

    .nanny-contact {
        padding: 55px 20px 60px;
    }

    .nanny-contact__heading {
        margin-bottom: 30px;
    }

    .nanny-contact__title {
        font-size: 38px;
    }

    .nanny-contact__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nanny-contact__card,
    .nanny-contact__card:last-child {
        grid-column: auto;

        min-height: 0;

        padding: 22px 18px;
    }

    .nanny-contact__bottom {
        flex-direction: column;
        align-items: flex-start;

        padding: 24px 20px;
    }

    .nanny-contact__bottom-text strong {
        font-size: 24px;
    }

    .nanny-contact__button {
        width: 100%;
        min-width: 0;
    }
}
/*=====================================================

===================================*/
/* ==========================================================
   ГРАФИКИ РАБОТЫ ДОМРАБОТНИЦЫ
========================================================== */

.housekeeper-schedule-row {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fbfaf7;
}

.housekeeper-schedule-row > .container,
.housekeeper-schedule-row > .container-fluid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.housekeeper-schedule-row .row,
.housekeeper-schedule-row [class*="col-"],
.housekeeper-schedule-row .sp-column,
.housekeeper-schedule-row .sp-module,
.housekeeper-schedule-row .sp-module-content,
.housekeeper-schedule-row .custom,
.housekeeper-schedule-row .mod-custom {
    margin: 0;
    padding: 0;
}


/* ==========================================================
   СЕКЦИЯ
========================================================== */

.housekeeper-schedule {
    width: 100%;
    padding: 82px 40px 90px;
    background: #fbfaf7;
}

.housekeeper-schedule__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* ==========================================================
   ЗАГОЛОВОК
========================================================== */

.housekeeper-schedule__heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.housekeeper-schedule__label {
    margin: 0 0 13px;

    color: #b08a48;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.housekeeper-schedule__title {
    margin: 0;

    color: #29251f;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -.015em;
}

.housekeeper-schedule__intro {
    max-width: 620px;

    margin: 17px auto 0;

    color: #71695f;

    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================
   СЕТКА
========================================================== */

.housekeeper-schedule__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 17px;
}


/* ==========================================================
   КАРТОЧКА
========================================================== */

.housekeeper-schedule__card {
    position: relative;

    min-height: 245px;

    padding: 30px 29px;

    background: #fff;

    border: 1px solid rgba(176,138,72,.13);
    border-radius: 10px;

    box-shadow:
        0 7px 25px rgba(50,40,28,.04);
}


/* чуть выделяем вахту */

.housekeeper-schedule__card--accent {
    border-color: rgba(176,138,72,.32);

    background:
        linear-gradient(
            145deg,
            #fff 0%,
            #fff 64%,
            #faf5eb 100%
        );
}


/* ==========================================================
   ИКОНКА
========================================================== */

.housekeeper-schedule__icon {
    display: flex;
    align-items: center;

    width: 46px;
    height: 46px;

    margin-bottom: 16px;

    color: #b08a48;
}

.housekeeper-schedule__icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   МАЛЕНЬКИЙ ТЕКСТ
========================================================== */

.housekeeper-schedule__type {
    margin-bottom: 7px;

    color: #b08a48;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.3;

    letter-spacing: .13em;
    text-transform: uppercase;
}


/* ==========================================================
   НАЗВАНИЕ ГРАФИКА
========================================================== */

.housekeeper-schedule__card h3 {
    margin: 0 0 12px;
    color: #302a24;
    font-family: "Inter", serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.05;
}

/* ==========================================================
   ОПИСАНИЕ
========================================================== */

.housekeeper-schedule__card p {
    max-width: 290px;

    margin: 0;

    color: #6c645b;

    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) {

    .housekeeper-schedule__card {
        transition:
            transform .25s ease,
            border-color .25s ease,
            box-shadow .25s ease;
    }

    .housekeeper-schedule__card:hover {
        transform: translateY(-4px);

        border-color: rgba(176,138,72,.32);

        box-shadow:
            0 14px 38px rgba(50,40,28,.07);
    }
}


/* ==========================================================
   ПЛАНШЕТ
========================================================== */

@media (max-width: 991px) {

    .housekeeper-schedule {
        padding: 68px 30px 72px;
    }

    .housekeeper-schedule__title {
        font-size: 42px;
    }

    .housekeeper-schedule__grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


/* ==========================================================
   МОБИЛЬНЫЙ
========================================================== */

@media (max-width: 575px) {

    .housekeeper-schedule {
        padding: 55px 20px 60px;
    }

    .housekeeper-schedule__heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .housekeeper-schedule__title {
        font-size: 38px;
    }

    .housekeeper-schedule__intro {
        margin-left: 0;
        margin-right: 0;
    }

    .housekeeper-schedule__grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .housekeeper-schedule__card {
        min-height: 0;
        padding: 24px 22px 25px;
    }

    .housekeeper-schedule__icon {
        width: 40px;
        height: 40px;

        margin-bottom: 11px;
    }

    .housekeeper-schedule__icon svg {
        width: 31px;
        height: 31px;
    }

    .housekeeper-schedule__card h3 {
        font-size: 27px;
    }

}
.mk-mobile-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    color:#fff;
    text-decoration:none;
    flex:0 0 34px;
}

.mk-mobile-whatsapp svg{
    display:block;
    width:23px;
    height:23px;
}

.mk-mobile-whatsapp:hover{
    color:#b08a48;
}
.mk-topbar__max svg{
    width:22px;
    height:22px;
    flex:0 0 22px;
    color:#fff;
}
.mk-topbar__inner{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:nowrap;
    gap:34px;
    white-space:nowrap;
}

.mk-topbar__max,
.mk-topbar__phones,
.mk-topbar__address{
    flex:0 0 auto;
    margin:0;
}

.mk-topbar__max{
    display:flex;
    align-items:center;
    gap:8px;
}

.mk-topbar__phones{
    display:flex;
    align-items:center;
    gap:16px;
}

.mk-topbar__phones-list{
    display:flex;
    align-items:center;
    gap:25px;
}

.mk-topbar__address{
    display:flex;
    align-items:center;
    gap:16px;
}

.mk-topbar__label{
    margin:0;
}

.mk-topbar__max svg{
    width:22px;
    height:22px;
    flex:0 0 22px;
    color:#fff;
}
