/* Основной файл стилей для темы Alwind */
:root {
  /* FONT COLORS */
  --main-color: #000000;
  --second-color: #2a2a2a;
  --third-color: #335eb8;

  --main-bg: #ffffff;
  --second-bg: #0b0d24;
  --third-bg: #f2f7fa;
  /* LINKS COLORS */

  --link-color: #335eb8;
  --link-inv-color: #ffffff;

  --link-hover-color: #26468a;
  --link-inv-hover-color: #ffffff;

  /* BUTTONS COLORS */
  --main-btn-bg: #ffffff;
  --second-btn-bg: #335eb8;
  --third-btn-bg: #5da626;

  --main-btn-color: #335eb8;
  --second-btn-color: #ffffff;
  --third-btn-color: #ffffff;

  --main-btn-border: #335eb8;
  --second-btn-border: #335eb8;
  --third-btn-border: #5da626;

  --main-btn-hover-bg: #335eb8;
  --second-btn-hover-bg: #26468a;
  --third-btn-hover-bg: #477e1e;

  --main-btn-hover-color: #ffffff;
  --second-btn-hover-color: #ffffff;
  --third-btn-hover-color: #ffffff;

  --main-btn-hover-border: #335eb8;
  --second-btn-hover-border: #26468a;
  --third-btn-hover-border: #477e1e;

  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #6c757d;
  --btn-disabled-border-color: #6c757d;

  --main-btn-border-width: 1px;
  --btn-border-radius: 5px;
  --btn-font-size: 13px;

  --btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  /* END BUTTONS COLORS */

  --top-banner-gradient: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* RESET BROWSER STYLES */
* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", serif;
}

/* TAGS */
html {
  color: var(--main-color);
  font-size: 14px;
  font-weight: 400;
}
html,
body {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-wrap: balance;
}
body {
  position: relative;
}
main {
  min-height: 600px;
  background-color: var(--main-bg);
}
main > section {
  overflow-x: hidden;
}
footer {
  color: #ffffff;
}

h1,
.h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 120%;
}
h2,
.h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
}
h3,
.h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  background-size: 100% 1px;
}

.anim-underline a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s;
}
.anim-underline a:hover {
  background-size: 100% 1px;
}

.breadcrumb {
  line-height: 1;
}

/* HELPERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.container-fluid {
  width: 100%;
  max-width: 100dvw;
}

.d-none,
.hidden {
  display: none !important;
}
.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}
.bg-main {
  background-color: var(--main-bg);
}
.bg-second {
  background-color: var(--second-bg);
}
.bg-third {
  background-color: var(--third-bg);
}
.fs-15 {
  font-size: 15px;
  line-height: 26px;
}
.fs-18 {
  font-size: 18px;
  line-height: 27px;
}
.fs-24 {
  font-size: 24px;
  line-height: 27px;
}
.fs-32 {
  font-size: 32px;
  font-weight: 500;
  line-height: 45px;
}
.fs-48 {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
}
.fw-bold {
  font-weight: 700;
}
.fc-second {
  color: var(--second-color);
}
.fc-third {
  color: var(--third-color);
}
.fc-white {
  color: #ffffff;
}
.fc-gray {
  color: #747474;
}

.opacity-3 {
  opacity: 0.3;
}

.flex-row {
  flex-flow: row;
}
.flex-column {
  flex-flow: column;
}

.g-col-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.g-col-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.ai-start {
  align-items: start;
}
.ai-center {
  align-items: center;
}
.ai-end {
  align-items: end;
}

.jc-start {
  justify-content: start;
}
.jc-center {
  justify-content: center;
}
.jc-end {
  justify-content: end;
}
.jc-between {
  justify-content: space-between;
}

.gap-20 {
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: var(--btn-font-size);
  font-weight: 600;
  line-height: 130%;
  color: var(--main-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--main-btn-border-width) solid var(--main-btn-border);
  border-radius: var(--btn-border-radius);
  background-color: var(--main-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: var(--main-btn-hover-color);
  background-color: var(--main-btn-hover-bg);
  border-color: var(--main-btn-hover-border);
}

.btn:focus-visible {
  color: var(--main-btn-hover-color);
  background-color: var(--main-btn-hover-bg);
  border-color: var(--main-btn-hover-border);
  outline: 0;
  box-shadow: var(--btn-focus-box-shadow);
}

.btn-second {
  color: var(--second-btn-color);
  background-color: var(--second-btn-bg);
  border-color: var(--second-btn-border);
}

.btn-second:hover,
.btn-second:focus-visible {
  color: var(--second-btn-hover-color);
  background-color: var(--second-btn-hover-bg);
  border-color: var(--second-btn-hover-border);
}

.btn-green {
  color: var(--third-btn-color);
  background-color: var(--third-btn-bg);
  border-color: var(--third-btn-border);
}

.btn-green:hover,
.btn-green:focus-visible {
  color: var(--third-btn-hover-color);
  background-color: var(--third-btn-hover-bg);
  border-color: var(--third-btn-hover-border);
}

.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
  color: var(--btn-disabled-color);
  pointer-events: none;
  background-color: var(--btn-disabled-bg);
  border-color: var(--btn-disabled-border-color);
}

.card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 11px 33px 0px rgba(0, 0, 0, 0.1);
}

.p-small {
  padding-top: 20px;
  padding-bottom: 20px;
}
.p-basic {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p-large {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pt-small {
  padding-top: 20px;
}
.pt-basic {
  padding-top: 40px;
}
.pt-large {
  padding-top: 60px;
}

.pb-small {
  padding-bottom: 20px;
}
.pb-basic {
  padding-bottom: 40px;
}
.pb-large {
  padding-bottom: 60px;
}

.position-absolute {
  position: absolute;
}
.position-relative {
  position: relative;
}
.position-fixed {
  position: fixed;
}

.top-button {
  right: 5%;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
  z-index: 480;
}
.top-button.visible {
  opacity: 1;
  visibility: visible;
  transition: visibility 0s linear 0s, opacity 0.3s;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

ul.list-sparcle {
  list-style: none;
}
ul.list-sparcle li {
  padding-left: 45px;
  position: relative;
  font-size: 18px;
  line-height: 27px;
  padding-bottom: 40px;
}
ul.list-sparcle li:before {
  position: absolute;
  left: 0;
  content: " ";
  display: block;
  width: 33px;
  height: 33px;
  background-image: url(../img/icons/sparcle.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.list-sparcle .list-sparcle-title {
  padding-top: 4px;
  padding-bottom: 20px;
}
.list-sparcle .list-sparcle-descr {
  margin-left: -45px;
}
.pic-sparcle {
  display: inline-block;
  width: 45px;
  height: 33px;
  background-image: url(../img/icons/sparcle.svg);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}

.w-100 {
  width: 100%;
}


/* HEADER */
.alwind-header {
  position: fixed;
  width: 100%;
  top:0;
  z-index: 500;
}
main {
  padding-top: 155px;
}
.logo-mobile {
  display: none;
}
.hdr-button {
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
}
.hdr-flex > div {
  padding: 0 25px;
}
.hdr-flex > div:first-child {
  padding-left: 0;
}
.hdr-flex > div:last-child {
  padding-right: 0;
}

.hdr-first-row {
  padding-top: 20px;
  padding-bottom: 20px;
  overflow-y: hidden;
  transition: all 0.25s ease-in-out;
}

.mobile-menu-button {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  background-color: rgb(245, 245, 245);
}
.mobile-menu-button > div {
  width: 70%;
  height: 2px;
  position: absolute;
  transition: 0.2s ease-in-out;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(102, 102, 102);
}
.mobile-menu-button .hamburger-1 {
  top:30%;
}
.mobile-menu-button .hamburger-2 {
  top:50%;
}
.mobile-menu-button .hamburger-3 {
  top:70%;
}
.mobile-menu-close .hamburger-1 {
  transform: translate(-50%, -50%) rotate(-45deg);
  top:50%;
}
.mobile-menu-close .hamburger-2 {
  transform: translate(50%, -50%);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu-close .hamburger-3 {
  transform: translate(-50%, -50%) rotate(45deg);
  top:50%;
}

.mobile-menu-search-form form,
.hdr-search-form form {
  display: flex;
  flex-flow: row nowrap;
}
.mobile-menu-search-form .hdr-search-field,
.hdr-search-form .hdr-search-field {
  border: 1px solid #cccccc;
  border-radius: 90px 0 0 90px;
  border-right: 0;
  padding: 20px 10px;
}
.mobile-menu-search-form input[type="search"],
.hdr-search-form input[type="search"] {
  border: 0;
  font-size: 12px;
}
.mobile-menu-search-form input[type="search"]:focus-visible,
.hdr-search-form input[type="search"]:focus-visible {
  outline: 0;
}
.mobile-menu-search-form .hdr-search-button,
.hdr-search-form .hdr-search-button {
  cursor: pointer;
  padding: 20px;
  border: 1px solid #cccccc;
  border-radius: 0 90px 90px 0;
  border-left: 0;
  color: #ffffff;
  background-color: #ffffff;
  background-image: url(../img/icons/magn_glass.png);
  background-position: center left;
  background-repeat: no-repeat;
}
.hdr-time,
.hdr-phone {
  font-size: 11px;
  color: #747474;
}
.hdr-icon-time,
.hdr-icon-phone {
  padding-right: 10px;
}
.hdr-nav,
.hdr-nav ul {
  list-style: none;
}
.hdr-nav,
.hdr-nav  li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.hdr-nav > ul {
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  line-height: 120%;
}
.hdr-nav a {
  display: block;
  padding: 20px;
}
.hdr-nav .menu-item-has-children > a {
  padding-right: 0;
}
.hdr-nav .menu-item-has-children .sub-menu a {
  padding: 20px 40px;
  width: max-content;
  max-width: 400px;
}
.hdr-nav > li,
.hdr-nav > li > a,
.hdr-nav .menu-item-has-children .sub-menu li,
.hdr-nav .menu-item-has-children .sub-menu a {
  color: var(--link-inv-color);
}
.hdr-nav .menu-item-has-children {
  position: relative;
  transition: background 0.15s;
}
.hdr-nav .menu-item-has-children::after {
  content: " ";
  display: inline-block;
  padding: 0 10px;
  width: 17px;
  height: 10px;
  background-image: url(../img/icons/down_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px auto;
  transition: transform 0.15s;
}

.hdr-nav .menu-item-has-children .menu-item-has-children::after {
  transform: rotate(270deg);
}
.hdr-nav .menu-item-has-children .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.15s;
  background-color: var(--second-bg);
  border: 1px solid var(--link-inv-color);
}
.hdr-nav .menu-item-has-children:hover > .sub-menu {
  display: block;
  opacity: 1;
}
.hdr-nav .menu-item:hover {
  background-color: rgba(51, 94, 184, .6);
}
.hdr-nav .menu-item-has-children:hover::after {
  transform: rotate(180deg);
}
.hdr-nav .menu-item-has-children .menu-item-has-children:hover::after {
  transform: rotate(90deg);
}
.hdr-nav .menu-item-has-children .sub-menu li {
  position: relative;
}
.hdr-nav .menu-item-has-children .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}
.hdr-nav .current_page_ancestor,
.hdr-nav .current_page_item {
  background-color: var(--link-color);
}

.home .hdr-nav .current_page_item {
  /* HOMEPAGE FIX */
  background-color: transparent;
}

/* FOOTER */
footer hr {
  border: 0.5px solid rgba(228, 228, 228, 0.2);
  size: 1px;
  color: rgba(228, 228, 228, 0.2);
  margin: 16px 0;
}
.ftr-copyright {
  background-color: #070818;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
}
.ftr-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}
.ftr-col {
  display: flex;
  flex-flow: column;
  gap: 15px;
}
ul.ftr-col,
.ftr-col ul {
  list-style: none;
}
.ftr-col a {
  color: var(--link-inv-color);
}
.ftr-item {
  padding: 8px 0 8px 25px;
  background-repeat: no-repeat;
  background-position: center left;
}
.ftr-time {
  background-image: url(../img/icons/clock.png);
}
.ftr-phone {
  background-image: url(../img/icons/call.png);
}
.ftr-adress {
  background-image: url(../img/icons/location.png);
}
.ftr-mail {
  background-image: url(../img/icons/email.png);
}

.ftr-map-col {
  grid-column: span 3;
}

/* SWIPER */
.swiper {
  margin-top: 20px;
}
.swiper-buttons {
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 1;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.swiper-buttons a {
  font-size: 20px;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid;
  border-color: var(--link-color);
  background-color: var(--main-btn-bg);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.swiper-buttons a:hover {
  color: var(--main-btn-hover-color);
  background-color: var(--main-btn-hover-bg);
}
.swiper-button-disabled {
  filter: grayscale(1);
}

/* MOBILE MENU */
#mobileMenu {
  --mmenu-offset: 81px;
  transition: 0.2s ease-in-out;
  background: #ffffff;
  position: fixed;
  top: var(--mmenu-offset);
  scroll-margin-top:81px;
  right: 0;
  width: clamp(250px, 80%, 450px);
  height: calc( 100vh - var(--mmenu-offset) - 2em); /* 100% screen - offset - 2xPadding */
  overflow: hidden;
  z-index: 499;
  display: flex;
  flex-flow: column;
  box-shadow: none;
  padding: 1em;
}
#mobileMenu.mm-closed {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

#mobileMenu.mm-opened {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  box-shadow: 0 0 100vw 100vw rgba(0, 0, 0, 0.6);
}
#mobileMenu .mobile-menu {
  overflow-y: scroll;
  overscroll-behavior: none;
  height: 100%;
}
.mobile-menu-search-form form {
  width: 100%;
  padding-bottom: 1em;
}
.mobile-menu-search-form .hdr-search-field {
  flex-grow: 1;
}
.mobile-menu-search-form .hdr-search-field, .mobile-menu-search-form .hdr-search-button {
  padding: 5px 15px;
}

#mobileMenu .mobile-menu ul {
  display: flex;
  flex-flow: column;
  list-style: none;
}
#mobileMenu .mobile-menu .menu li {
  border-bottom: 1px solid #cccccc;
}
#mobileMenu .mobile-menu .menu li:last-child {
  border-bottom: none;
}
#mobileMenu .mobile-menu .menu .submenu-opened > a {
  border-bottom: 1px dashed #cccccc;
}
#mobileMenu .mobile-menu .menu li a {
  display: block;
  padding: 10px 0;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 500;
}
#mobileMenu .mobile-menu .menu .menu-item-has-children {
  position: relative;
  display: flex;
  flex-flow: row wrap;
}
#mobileMenu .mobile-menu .menu li .sub-menu a {
  font-weight: 400;
}
#mobileMenu .mobile-menu .menu .current-menu-parent > a,
#mobileMenu .mobile-menu .menu .current-menu-item > a {
  font-weight: 700 !important;
  color: var(--link-color);
}
#mobileMenu .mobile-menu .menu .menu-item-has-children > a {
  width: calc(100% - 41px);
  border-right: 1px solid #cccccc;
}
#mobileMenu .mobile-menu .menu .menu-item-has-children > .mobile-submenu-opener {
  display: block;
  content: " ";
  width: 40px;
  height: 40px;
  background-image: url(../img/icons/down_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  filter: brightness(0);
  transition: transform 0.15s;
  background-color: transparent;
  border: none;
}
#mobileMenu .mobile-menu .menu .menu-item-has-children.submenu-opened > .mobile-submenu-opener {
  transform: rotate(180deg);
}
#mobileMenu .menu .menu-item-has-children > .sub-menu {
  padding-left: 1em;
  top: 0;
  left: 0;
  height: 0;
  transition: height 0.15s ease-in-out;
  overflow: hidden;
  flex-grow: 1;
}
#mobileMenu .menu-item-has-children.submenu-opened > .sub-menu {
  height: 100%;
  overflow: unset;
}

/* SEARCH PAGE */
.search-page-header {
  padding-bottom: 40px;
}
.search-item {
  display: flex;
  flex-flow: row;
}
.search-result-wrapper,
.search-card-body,
.search-card-text,
.search-card-img {
  display: flex;
  flex-flow: column;
}
.search-result-wrapper {
  gap:30px;
}
.search-item {
  padding: 20px;
}
.search-item,
.search-card-body,
.search-card-text {
  gap: 20px;
}
.search-card-img {
  justify-content: center;
}

/* MODALS */
.modal-wrapper,
.modal-content {
  display: flex;
  flex-flow: column;
  gap:20px;
  
}
.modal-wrapper {
  border-radius: 10px;

}
.f-button svg {
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  --f-button-svg-stroke-width: 3px;
}
.is-compact .fancybox__content>.f-button.is-close-btn {
  top:-40px;
  right: 0;
}
.modal-content label {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  width: 100%;
}
.modal-content input[type="email"], 
.modal-content input[type="submit"], 
.modal-content input[type="tel"], 
.modal-content input[type="text"], 
.modal-content textarea {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  margin: 0;
  border: 1px solid #e6e7e8;
  text-align: left;
  font-size: 20px;
  border-radius: 4px;
  transition: all 0.2s;
}
.form-grid {
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.modal-content .btn {
  padding: 10px 30px;
  font-size: 16px;
}

.modal-content .wpcf7-acceptance label {
  font-weight: 400;
  font-size: 14px;
}
@media screen and (max-height: 500px) {
  .hdr-first-row {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #mobileMenu {
    --mmenu-offset:61px;
  }

}
/* RESPONSIVE */
@media screen and (min-width: 1300px) {

}
@media screen and (max-width: 1300px) {
  .container {
    max-width: 991px;
  }
  .hdr-flex > div {
    padding: 0 15px;
  }
  .hdr-time .fc-second, 
  .hdr-phone .fc-second {
    font-size: 14px;
  }
  .hdr-button {
    padding: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .d-lg-none {
    display: none;
  }
  .hide-hdr-first-row main {
    scroll-padding-top: 100px;
  }
  .hide-hdr-first-row .hdr-first-row { 
    max-height: 0px;
    padding: 0;
  }

}
@media screen and (max-width: 1023px) {
  :root {
    --top-banner-gradient: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.6) 70%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  main {
    padding-top: 80px;
  }
  .d-lg-block {
    display: none;
  }
  #pageWrapper {
    overflow-x: hidden;
  }
  .alwind-header {
    border-bottom: 1px solid #cccccc;
  }
  
  .hdr-flex {
    justify-content: space-between;
  }
  .hdr-second-row,
  .hdr-close-btn,
  .mm-wrapper--opened .hdr-menu-btn {
    display: none;
  }
  .mm-wrapper--opened .hdr-close-btn {
    display: block;
  }
  .container {
    max-width: 768px;
  }
  .ftr-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .ftr-first-col {
    grid-row: span 2;
  }
  
}
@media screen and (max-width: 800px) {
  
  :root {
    --top-banner-gradient: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.8) 70%,
      rgba(255, 255, 255, 0.4) 100%
    );
  }

  .container {
    max-width: 576px;
  }
  .ftr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .ftr-first-col {
    grid-column: span 2;
    grid-row: span 1;
  }
  .ftr-map-col {
    grid-column: span 2;
  }
  .search-item {
    flex-flow: column;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  main {
    padding-top: 60px;
  }
  .container {
    max-width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  #mobileMenu {
    --mmenu-offset:61px;
  }
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: inline;
  }
  .hdr-flex > .hdr-menu-btn {
    padding-right: 0;
  }
  
  .hdr-first-row {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .h1, h1 {
    font-size: 36px;
  }
  .h2, h2 {
    font-size: 28px;
  }
  .fs-32 {
    font-size: 24px;
    line-height: 32px;
  }
  .fs-48 {
    font-size: 32px; 
  }
  .fs-18 {
    font-size: 16px;
    line-height: 24px;
  }
  .swiper-buttons.swiper-buttons-mobile {
    width: 100vw;
    right: -15px;
    justify-content: space-between;
    height: 0;
  }
  .swiper-buttons.swiper-buttons-mobile a {
    border: none;
    border-radius: 0;
    color: #ffffff;
    width: 40px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
  }
  .swiper-buttons.swiper-buttons-mobile .swiper-button-disabled {
    opacity: 0;
  }
  .ftr-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .ftr-first-col {
    grid-column: span 1;
  }
  .ftr-map-col {
    grid-column: span 1;
  }
}
