@font-face {
  font-family: "TT First Neue";
  src: url("../tt_firs_neue/TT-Firs-Neue-Trial-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "TT First Neue";
  src: url("../tt_firs_neue/TTFirsNeue_Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "TT First Neue";
  src: url("../tt_firs_neue/TTFirsNeueTrial_Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "TT First Neue";
  src: url("../tt_firs_neue/TTFirsNeueTrial_SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "TT Firs Neue Trial Thin";
  src: url("../tt_firs_neue/TT-Firs-Neue-Trial-Thin.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "TT First Neue";
  src: url("../tt_firs_neue/TTFirsNeueTrial_Bold.ttf");
  font-weight: 700;
}

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

*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

video::-webkit-media-controls {
  display: none !important;
}

body {
  overflow-x: hidden;
  font-family: "TT First Neue", sans-serif !important;
  font-feature-settings: "tnum";
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  color: white;
  text-decoration: none;
}

a,
button {
  font-family: inherit !important;
}

button {
  -webkit-appearance: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 12px 0;
  background-color: rgba(19, 19, 19, 1);
  transform: translateY(-100%);
  z-index: 11;
  transition: 0.3s;
}

header.active {
  transform: translateY(0);
}

.container {
  max-width: 1440px;
  padding: 10px;
  margin: auto;
}

.navbar {
  width: 100% !important;
  padding: 0 20px !important;
  height: 100%;
  margin: auto;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  color: white;
  gap: 15px !important;
}

.nav_logo {
  flex-shrink: 0;
}

.nav_logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav_logo svg {
  width: 90px !important;
  height: 52px !important;
  max-width: 90px !important;
  max-height: 52px !important;
  display: block;
}

.nav_link {
  display: flex !important;
  justify-content: space-between;
  gap: 10px !important;
  list-style-type: none;
  width: max-content;
  font-size: 17px !important;
  font-weight: 500;
  flex-shrink: 0 !important;
}

.nav_link a {
  color: white;
  text-decoration: none;
  white-space: nowrap;
  font-size: 17px !important;
}

.nav_link a li {
  font-size: 17px !important;
}

.nav_phone {
  display: flex !important;
  align-items: center;
  font-size: 12px !important;
  font-weight: 500;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.nav_phone svg {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.nav_adress {
  display: flex !important;
  align-items: center;
  font-size: 12px !important;
  font-weight: 500;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.nav_adress span {
  padding: 0 3px;
}

.nav_adress svg {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  background: rgb(0, 119, 139);
  background: linear-gradient(
    90deg,
    rgba(0, 119, 139, 1) 60%,
    rgba(27, 155, 158, 1) 90%
  );
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: rgb(0, 107, 126);
  background: linear-gradient(
    90deg,
    rgb(0, 107, 126) 60%,
    rgb(23, 138, 139) 90%
  );
}

.nav_btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 200px !important;
  height: 43px !important;
  border-radius: 10px;
  font-size: 12px !important;
  font-weight: 500;
  flex-shrink: 0 !important;
  background: rgb(0, 119, 139);
  background: linear-gradient(
    90deg,
    rgba(0, 119, 139, 1) 60%,
    rgba(27, 155, 158, 1) 90%
  );
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.nav_btn:hover {
	color: #e7e7e7 !important;
  background: rgb(0, 107, 126);
  background: linear-gradient(
    90deg,
    rgb(0, 107, 126) 60%,
    rgb(23, 138, 139) 90%
  );
}

.hamburger {
  width: 34px;
  height: 34px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
  background: none;
  outline: none;
  border: none;
  display: none;
  z-index: 12;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.hamburger.active {
  position: fixed;
  top: 26px;
  right: 20px;
}

.menu_links {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu_links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #131313;
}

.menu_contacts {
  margin: 0 20px;
  border-top: 2px solid #00778b;
  border-bottom: 2px solid #00778b;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu_contacts_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.menu a {
  font-weight: 500;
  text-decoration: none;
  color: #131313;
}

.menu_contacts_item img {
  max-width: 24px;
}

.menu_contacts_item .contacts_item_info {
  display: flex;
  gap: 6px;
  flex-direction: column;
}

.menu_contacts_item .contacts_item_info a {
  max-width: 185px;
  font-size: 14px;
}

.hamburger.active span:first-child {
  transform: translateY(4px) rotate(135deg);
}

.hamburger.active span:last-child {
  transform: translateY(-4px) rotate(-135deg);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: 0.3s;
  background: #fff;
  min-width: 60vw;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  z-index: 11;
}

.menu.active {
  transform: translateX(0);
}

.menu_header {
  height: 80px;
  background: #131313;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #13131333;
  z-index: 10;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.backdrop.active {
  visibility: visible;
  opacity: 1;
}

.body {
  width: 100%;
}

.content {
  height: 100%;
  margin: auto;
  color: white;
  display: flex;
  justify-content: space-between;
  /*padding-top: 180px;*/
}

.floating_btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #48c95f !important;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 3s;
  width: 100px !important;
  height: 100px !important;

  z-index: 11;
  /*animation: pulse 1.5s infinite;*/
  /*-webkit-animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);*/
  /*-moz-animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);*/
  /*-ms-animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);*/
  /*animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);*/
  box-shadow: 0 0 0 0 #42db87;
}

.floating_btn:hover {
  cursor: pointer;
  background: #38a04b;
}

.floating_btn img {
  max-width: 52px;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.main_banner {
  padding-top: 106px !important;
  width: 100%;
  height: 705px;
  background-color: rgba(0, 0, 0, 1);
}

.main_banner_left {
  width: 50%;
}

.main_banner_left h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 49.02px;
}

.main_banner_left h1 strong {
  line-height: 80px;
  font-size: 48px;
  color: #00778b;
}

.main_banner_left p {
  font-family: "TT Firs Neue Trial Thin";
  font-size: 25px;
  font-weight: 100;
  line-height: 30px;
  margin-top: 12px;
}

.main__banner_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  width: 238px;
  height: 65px;
  border-radius: 10px;
  background-color: rgba(0, 119, 139, 1);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.main__banner_btn:hover {
  background-color: rgb(0, 87, 102);
  color: #fff !important;
}

.main_banner_right {
  width: 45%;
}

.main_banner_right video {
  width: 104%;
}
.about_company {
  margin: auto;
  margin-top: 130px;
}

.about_company h1 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.about_company_content {
  margin-top: 40px;
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.about_company_left {
  display: flex;
  gap: 40px;
}

.about_company_left .about_company_img {
  width: max-content;
}

.about_company_left p {
  flex-grow: 1;
}

.about_company_content p {
  margin: 0 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.64px;
}

.why_dmart {
  margin: auto;
  margin-top: 100px;
}

.why_dmart h1 {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
}

.dmart_content {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style-type: none;
}

.dmart_content li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  text-align: center;
  margin-bottom: 50px;
}

.dmart_svg {
  margin-bottom: 10px;
}

.dmart_svg img {
  width: 120px;
  height: 120px;
}

.dmart_content li h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.dmart_content li p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.work_steps {
  width: 100%;
  padding-top: 160px;
  height: 530px;
  background-color: rgba(251, 251, 251, 1);
}

.work_steps h1 {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
}

.steps_content {
  margin: auto;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.steps_left {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-radius: 20px;
}

.block {
  width: 424px;
  height: 206px;
  border-radius: 20px;
  background-color: #00778b;
  padding: 30px 50px 50px 50px;
  cursor: pointer;
  position: absolute;
  top: 0;
  transition: left 1.3s ease;
  color: white;
}

.block h2 {
  font-size: 20px;
  font-weight: 500;
}

.steps_info {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.steps_info p {
  font-size: 28px;
  font-weight: 600;
}

#block1 {
  left: 0;
}

#block2,
#block4 {
  background-color: rgba(84, 122, 196, 1);
}

#block2,
#block3,
#block4,
#block5 {
  left: 100%; /* РёР·РЅР°С‡Р°Р»СЊРЅРѕ Р±Р»РѕРєРё РЅР°С…РѕРґСЏС‚СЃСЏ СЃРїСЂР°РІР° Р·Р° РїСЂРµРґРµР»Р°РјРё РєРѕРЅС‚РµР№РЅРµСЂР° */
}

.steps_right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glowing-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 423px;
  height: 136px;
  border-radius: 20px;
  position: relative;
  font-size: 16px;
  color: #fff;
  background-color: rgba(26, 153, 157, 1);
  border: none;
  cursor: pointer;
  overflow: hidden;
  font-size: 28px;
  font-weight: 600;
}

a:hover{
	color: #e3e3e3 !important;
}

.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -100%;
  width: 19%;
  height: 300px;
  transform: rotate(-10deg);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
  animation: glowing 2s infinite;
}

.glowing-button::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -100%;
  width: 19%;
  height: 300px;
  transform: rotate(-10deg);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
  animation: glowing 2s infinite;
}

@keyframes glowing {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.our_benefits {
  margin-top: 140px;
  width: 100%;
}

.our_benefits h1 {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
}

.our_benefits_content {
  margin-top: 72px;
  width: 100%;
}

.our_benefits_card {
  position: relative;
  width: 100%;
  height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /*margin-bottom: 10px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.our_benefits_card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  /*background-color: rgba(0, 0, 0, 0.4);*/
}

.benefits_card_info {
  position: absolute;
  background: #f8f8f8;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  z-index: 1;
  transition: 0.3s;
  transform: translateY(100%);
}

.gift_p {
  font-size: 17px !important;
}

.benefits_card_info.active {
  transform: translateY(0);
}

.benefits_card_info_content {
  position: relative;
  padding: 25px 30px;
}

.benefits_card_info_content .slick-list {
  height: 440px;
  border-radius: 20px;
}

.benefits_card_info_content .slick-list .slick-track {
  max-height: 440px;
}

.info_content_desktop_btn {
  width: 100%;
}

.info_content_mobile_btn {
  width: 100%;
  display: none;
}

.benefits_card_info_close {
  position: absolute;
  top: 50px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #00778b;
  border-radius: 50%;
  border: none;
  transition: background 0.3s;
}

.benefits_card_info_close::before {
  width: 100%;
  height: 100%;
  content: url("../img/arrow-down.svg");
}

.benefits_card_info_close:hover {
  cursor: pointer;
  background: #006274;
}

.benefits_card_info .info_content {
  margin-top: 60px;
}

.benefits_card_info .info_header h2 {
  font-weight: 700;
  font-size: 32px;
}

.benefits_card_info .info_content_left {
  list-style: none;
  display: flex;
  gap: 25px;
}

.benefits_card_info .info_list {
  max-width: 270px;
  max-height: 417px;
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 14px;
  flex-wrap: wrap;
}

.benefits_card_info .info_content_left li {
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
}

.benefits_card_info .info_content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.benefits_card_info .info_content .info_content_left {
  width: 45%;
}

.benefits_card_info .info_content .info_slider {
  width: 55%;
}

.info_slider_block {
  width: 100%;
  height: 440px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: rgba(153, 153, 153, 1);
}

.info_slider_block img {
  max-width: 100%;
  max-height: 440px;
  width: auto;
}

/* .our_benefits_card_info .info_content_left li img {
} */

.our_benefits_card h1 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  z-index: 1;
  text-align: center;
}

.our_benefits_card .our_benefits_btn {
  -webkit-appearance: none;
  appearance: none;
  width: 227px;
  height: 54px;
  border-radius: 10px;
  border: none;
  background-color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
  transition: 0.3s;
  color: black !important;
}

.our_benefits_card .our_benefits_btn:hover {
  cursor: pointer;
  background-color: rgb(219, 219, 219);
}

.our_benefits_card button.slick-prev {
  width: 33px;
  height: 33px;
}

.our_benefits_card button.slick-next,
.our_benefits_card button.slick-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #7b7b7b66;
  transition: 0.3s;
  z-index: 1;
}

.our_benefits_card button.slick-next:hover,
.our_benefits_card button.slick-prev:hover {
  background: #dad8d866;
}

.our_benefits_card button.slick-prev {
  left: 20px;
}

.our_benefits_card button.slick-next {
  right: 20px;
}

.our_benefits_card button.slick-next::before,
.our_benefits_card button.slick-prev::before {
  position: absolute;
  width: 33px;
  height: 33px;
  content: url("../img/dmart_arrow2.svg");
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* display: flex; */
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.our_benefits_card button.slick-next::before {
  position: absolute;
  width: 33px;
  height: 33px;
  content: url("../img/dmart_arrow2.svg");
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* display: flex; */
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.our_benefits_card button.slick-prev::before {
  content: url("../img/arrow-slider-left.svg");
}

.our_benefits_card button.slick-next::before {
  content: url("../img/arrow-slider-right.svg");
}

.about_us {
  margin: auto;
  padding-top: 160px;
}

.about_us h1 {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
}

.about_us_slider {
  padding: 20px;
  margin-top: 50px;
}

.about_us_slider .slick-list.draggable {
  height: 300px;
  padding-top: 30px;
}

.about_us_slider .slick-list {
  overflow-x: clip;
  overflow-y: visible;
}

.about_us_slider .slick-track {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about_us_slider .slick-prev {
  left: -15px;
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
}

.about_us_slider .slick-next {
  right: -15px;
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
}

.about_us_slider .slick-prev:before {
  content: "";
  background-image: url(../img/dmart_arrow.svg);
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about_us_slider .slick-next:before {
  content: "";
  background-image: url(../img/dmart_arrow2.svg);
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about_us_card {
  cursor: pointer;
  width: 388px;
  height: 238px;
  display: flex !important;
  flex-direction: column;
  /* margin-left: 12px; */
  padding: 54px 49px 30px 24px;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
  transition: all 0.3s ease;
  background-color: #fff;
  z-index: 10;
}

.about_us_card .avatar {
  position: absolute;
  top: -30px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0px 0px 5px -1px #00000024;
  display: block;
  border-radius: 50%;
}

.about_us_card h1 {
  overflow: hidden;
  text-align: start;
  font-size: 18px;
  font-weight: 500;
}

.about_us_card h2 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(153, 153, 153, 1);
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.mvsh {
  margin-top: 20px !important;
}

.about_us_card.expanded {
  width: 900px;
  height: auto;
  position: fixed;
  padding: 70px;
  top: -45%;
  left: 9%;
  z-index: 13;
  transform: translate(-50%, -50%);
  border-radius: 20px; /* РЎРѕС…СЂР°РЅСЏРµРј СЂР°РґРёСѓСЃ */
  overflow: visible; /* Р”Р»СЏ РїСЂРѕРєСЂСѓС‚РєРё, РµСЃР»Рё СЃРѕРґРµСЂР¶РёРјРѕРµ РїСЂРµРІС‹С€Р°РµС‚ СЂР°Р·РјРµСЂС‹ */
}

.review_p {
  display: none !important;
}

.about_us_card p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0s ease;
  line-height: 18.06px;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.about_us_card .video_review {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.about_us_card .video_review span {
  font-weight: 600;
  color: #00778b;
}

.about_us_card button {
  text-align: left;
  margin-top: auto;
  background-color: transparent;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 119, 139, 1);
  cursor: pointer;
}

.about_us_card.expanded button {
  display: none;
}

.about_us_card.expanded p {
  white-space: normal;
  max-height: none;
}

/* .blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}

.blur-background.visible {
  opacity: 1;
} */

.trust_us {
  max-width: 100vw;
  margin: 100px auto 0 auto;
  width: 100vw;
}

.trust_us h1 {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}

.trust_us_slider {
  margin-top: 56px;
}

.trust_us_slider img {
  max-width: 134px;
  aspect-ratio: 3/4;
  margin-left: 102px;
}

footer {
  margin-top: -30px;
  width: 100%;
  background-color: rgba(19, 19, 19, 1);
  /*padding-left: 120px;*/
  /*padding-top: 75px;*/
  /*padding-bottom: 20px;*/
  padding: 75px;
  color: white;
}

.footer_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer_left {
  width: 55%;
}

.footer_left h2 {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
}

.footer_nav {
  width: max-content;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  margin-bottom: 30px;
  padding-left: 0px !important;
}

.footer_nav li {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.footer_social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.footer_social p {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.footer_social p svg {
  margin-right: 5px;
}

.footer_number {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 30px;
}

.footer_number_col {
  margin-left: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0px !important;
}

.footer_number li {
  margin-right: 10px;
  font-size: 14px;
  font-weight: 500;
}

.footer_address {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.footer_address svg {
  margin-right: 5px;
}

.footer_right {
  width: 45%;
}

.footer_right_top {
  margin-bottom: 37px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.footer_top_left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_top_right img {
  max-width: 142px;
}

.footer_right_top p {
  font-size: 20px;
  font-weight: 500;
}

.footer_right_top a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  width: 242px;
  height: 42px;
  color: white;
  border-radius: 10px;
  border: none;
  background: rgb(0, 119, 139);
  background: linear-gradient(
    90deg,
    rgba(0, 119, 139, 1) 60%,
    rgba(27, 155, 158, 1) 90%
  );
  transition: 0.3s;
}

.footer_right_top a:hover {
  cursor: pointer;
  background: rgb(0, 106, 124);
  background: linear-gradient(
    90deg,
    rgb(0, 97, 114) 60%,
    rgb(22, 133, 134) 90%
  );
}

footer a {
  color: white;
  text-decoration: none;
}

.footer_right_map {
  position: relative;
  width: 100%;
  height: 302px;
  border-radius: 10px;
  overflow: hidden;
}

.footer_map_svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
}

.not_found {
  margin: 200px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.not_found_content {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.not_found_content .pattern {
  position: absolute;
  left: 50%;
  bottom: -30px;
  z-index: -10;
}

.not_found_content h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
}

.not_found_content h1 {
  font-weight: 700;
  font-size: 120px;
  line-height: 100%;
}

.not_found_content h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}

h4 {
	font-size: 20px;
    font-weight: 500;
}

.not_found_content .btn {
  margin-top: 26px;
  background: linear-gradient(90deg, #00778b 0%, #1b9b9e 100%);
  border-radius: 10px;
  padding: 14px 42px 15px 42px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (max-width: 1450px) {
  .content_container {
    padding: 80px;
  }
}

@media screen and (max-width: 1270px) {
  .main_banner_left h1 {
    font-size: 28px;
  }
  .content_container {
    padding: 80px;
  }
}

@media screen and (max-width: 1400px) {
  .navbar {
    padding: 0 20px;
    gap: 15px;
  }

  .nav_link {
    gap: 10px;
    font-size: 17px;
  }

  .nav_link a {
    font-size: 17px !important;
  }

  .nav_link a li {
    font-size: 17px !important;
  }

  .nav_phone {
    font-size: 12px;
  }

  .nav_adress {
    font-size: 12px;
  }

  .nav_btn {
    width: 200px;
    font-size: 12px;
    height: 43px;
  }

  .nav_logo svg {
    width: 85px;
    height: 49px;
  }
}

@media screen and (max-width: 1200px) {
  .about_company_content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .benefits_card_info .info_content {
    justify-content: space-between;
  }

  .benefits_card_info .info_content .info_slider {
    width: 40%;
  }
}

@media screen and (max-width: 1000px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0 15px;
    gap: 10px;
  }

  .nav_link {
    width: 100%;
    justify-content: center;
    gap: 12px;
    order: 1;
    font-size: 17px;
  }

  .nav_link a {
    font-size: 17px !important;
  }

  .nav_link a li {
    font-size: 17px !important;
  }

  .nav_phone {
    font-size: 11px;
  }

  .nav_adress {
    font-size: 11px;
  }

  .main_banner {
    width: 100%;
    padding: 10px 20px;
    height: unset;
    min-height: 100vh;
  }

  .main_banner .content {
    width: 100%;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .main_banner_left,
  .main_banner_right {
    width: 100%;
  }

  .about_company_left {
    flex-direction: column;
    align-items: center;
  }

  .navbar .nav_btn {
    width: 170px;
    font-size: 12px;
    height: 40px;
  }

  .steps_content {
    flex-direction: column;
  }

  .steps_left,
  .steps_right {
    width: 100%;
  }

  .glowing-button {
    width: 100%;
    height: auto;
    font-size: 18px;
    padding: 17px;
  }
}

@media screen and (max-width: 860px) {
  .content {
    padding-top: 50px;
  }
}

@media screen and (max-width: 868px), screen and(max-height: 360px) {
  .footer_top_right {
    margin-top: 15px;
  }
  .footer_top_right img {
    max-width: 100%;
  }
  .container {
    padding: 10px;
  }

  .nav_link,
  .nav_adress,
  .nav_btn,
  .nav_phone {
    display: none !important;
  }

  .menu .nav_btn {
    display: flex !important;
    width: 100%;
  }

  .menu {
    top: 76px;
  }

  .menu .nav_btn {
    width: 100%;
    display: inline-flex;
    color: #fff;
  }

  .menu_btn_wrap {
    width: 100%;
    padding: 24px 20px;
  }

  .hamburger {
    display: flex;
  }

  .block {
    width: 100%;
  }

  .main_banner_left h1 {
    font-size: 28px;
    line-height: 36.12px;
  }

  .main_banner_left,
  .main_banner_right video {
    max-width: 100%;
  }

  footer {
    padding: 40px 20px;
    height: auto;
  }

  .footer_content {
    width: 100%;
    flex-direction: column;
  }

  .footer_left,
  .footer_right {
    width: 100%;
  }

  .footer_right_top a {
    width: 100%;
  }

  .footer_nav {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
  .footer_nav li {
    font-size: 14px;
  }
  .footer_nav a {
    font-size: 14px;
  }

  .benefits_card_info {
    max-width: 100%;
  }

  .benefits_card_info_content {
    max-width: 100%;
    padding: 15px 20px !important;
  }

  .our_benefits_card button.slick-prev::before {
    top: 53%;
    left: 50%;
    transform: translate(-52%, -50%);
    display: flex;
  }

  .our_benefits_card button.slick-next::before {
    top: 55%;
    left: 55%;
    transform: translate(-50%, -53%);
    display: flex;
  }

  .info_content_left,
  .benefits_card_info .info_content .info_slider {
    width: 100% !important;
  }

  .info_content_left {
    width: 100% !important;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
  }

  .benefits_card_info .info_content {
    margin-top: 20px;
  }

  .our_benefits_card {
    height: 800px;
  }

  .benefits_card_info .info_content {
    flex-direction: column;
  }

  .info_content_desktop_btn {
    display: none;
  }

  .info_content_mobile_btn {
    display: inline-flex;
    margin-top: 10px;
  }

  .our_benefits_card button.slick-prev {
    top: unset;
    left: 14px;
    bottom: 10px;
    background: #fff;
  }

  .our_benefits_card button.slick-prev:before {
    left: 48%;
    content: url("../img/dmart_arrow.svg");
  }

  .our_benefits_card button.slick-next {
    top: unset;
    right: 14px;
    bottom: 10px;
    background: #fff;
  }

  .our_benefits_card button.slick-next:before {
    top: 56%;
    content: url("../img/dmart_arrow2.svg");
  }

  .benefits_card_info_content .slick-list {
    max-height: 200px;
    height: 200px;
  }

  .info_slider_block {
    height: 200px !important;
    max-height: 200px !important;
  }

  .dmart_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .dmart_content li h2 {
    text-align: center;
  }

  .dmart_content li {
    width: 100%;
  }

  .about_company {
    margin-top: 50px;
    width: 100%;
  }

  .about_company h1 {
    font-size: 24px;
    font-weight: 600;
  }
  .about_us_card h2 {
    overflow: hidden;
    height: 18px;
  }

  .about_company_content p {
    padding: 0;
    text-align: justify;
  }

  .footer_right_top {
    margin-top: 40px;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .footer_top_left {
    width: 100%;
  }

  .footer_top_right {
    width: 100%;
    max-width: unset;
  }

  .footer_right_top button {
    width: 100%;
  }

  .info_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .benefits_card_info_close {
    top: 20px;
    right: 20px;
    min-width: 40px;
    min-height: 40px;
  }

  .benefits_card_info .info_header h2 {
    max-width: 350px;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    /* display: -webkit-box; */
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    box-orient: vertical;
  }

  .benefits_card_info .info_content {
    gap: 10px;
  }

  .about_company_svg {
    padding: 0 20px;
  }

  .about_company_svg svg {
    width: 100%;
  }

  .main__banner_btn {
    width: 100%;
  }

  .modal {
    padding: 64px 20px !important;
  }

  .review_video_wrap {
    margin-top: 20px;
  }

  .not_found_page {
    overflow: hidden;
  }

  .not_found_content h1 {
    font-size: 80px;
  }

  .not_found_content .pattern {
    max-width: 280px;
  }

  .steps_info {
    gap: 10px;
  }

  .steps_info p {
    font-size: 24px;
  }

  .block {
    padding: 30px 50px 50px 30px;
  }

  .benefits_card_info .info_content_left {
    gap: 10px;
  }

  .benefits_card_info .info_content_left .info_list {
    max-height: unset;
    flex-wrap: nowrap;
    gap: 5px;
  }

  .benefits_card_info .info_content_left .info_list img {
    width: 24px;
    height: 24px;
  }

  .benefits_card_info .info_content_left li {
    font-size: 14px;
    min-height: unset;
  }

  .hamburger.active {
    top: 20px;
    right: 20px;
  }

  .our_benefits {
    margin-top: 50px;
  }

  .work_steps {
    padding-top: 70px;
  }

  .work_steps h1 {
    font-size: 30px;
  }

  .about_us {
    margin-top: 50px !important;
  }

  .about_us_slider {
    margin-top: 0;
  }

  .about_us h1 {
    max-height: 45px;
    overflow: hidden;
    font-size: 30px;
  }
  .about_us_card button {
    padding-top: 10px;
  }

  .trust_us {
    margin: 50px auto 0 auto;
  }

  .trust_us h1 {
    font-size: 30px;
  }

  .footer_right_top p {
    text-align: center;
  }

  .benefits_card_info_content .slick-list .slick-track {
    max-height: 200px;
  }

  .benefits_card_info_content .slick-list .slick-track img {
    height: 200px;
    max-height: 200px;
  }
  .floating_btn {
    width: 70px !important;
    height: 70px !important;
  }
  .floating_btn img {
    max-width: 32px;
  }
}

@media screen and (max-width: 480px) {
  .benefits_card_info .info_header h2 {
    max-width: 300px;
  }
  /*.our_benefits_card:nth-child(1) {
    background-image: url("/assets/img/CategoriesBg/1.png") !important;
  }
  .our_benefits_card:nth-child(2) {
    background-image: url("/assets/img/CategoriesBg/2.png") !important;
  }
  .our_benefits_card:nth-child(3) {
    background-image: url("/assets/img/CategoriesBg/3.png") !important;
  }
  .our_benefits_card:nth-child(4) {
    background-image: url("/assets/img/CategoriesBg/4.png") !important;
  }
  .our_benefits_card:nth-child(5) {
    background-image: url("/assets/img/CategoriesBg/5.png") !important;
  }
  .our_benefits_card:nth-child(6) {
    background-image: url("/assets/img/CategoriesBg/6.png") !important;
  }
  .our_benefits_card:nth-child(9) {
    background-image: url("/assets/img/CategoriesBg/7.png") !important;
  }
  .our_benefits_card:nth-child(10) {
    background-image: url("/assets/img/CategoriesBg/8.png") !important;
  }
  .our_benefits_card:nth-child(11) {
    background-image: url("/assets/img/CategoriesBg/9.png") !important;
  }*/
  .logos:hover .logos-slide {
    animation-play-state: unset !important;
  }
  .about_us h1 {
    font-size: 18px;
  }
}

.slick-next {
  right: 0;
}

.footer_col {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.footer_col svg {
  min-width: 24px;
}

.footer_col_content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}

.footer_col_content svg {
  min-width: 24px;
}

.footer_number {
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 20px;
}

.about_company_svg svg path:nth-child(2) {
  stroke: white;
  animation: anim 1s infinite alternate;
}

@keyframes anim {
  from {
    stroke: #50c7db;
  }

  to {
    stroke: #00778b;
  }
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 870px;
  max-width: 95vw;
  border-radius: 20px;
  background: white;
  overflow: hidden;
  z-index: 11;
  padding: 70px;
  transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;

  max-height: 95vh;
  overflow-y: scroll;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
  opacity: 1;
}

.modal_close {
  position: absolute;
  top: 30px;
  right: 30px;
  border: none;
  background: none;
}

.close_fill {
  color: #a4a4a4;
}

.modal_close:hover {
  cursor: pointer;
}

.review_header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review_header img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0px 0px 5px -1px #00000024;
  display: block;
  border-radius: 50%;
}

.review_header_info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review_content {
  margin-top: 40px;
}

.review_content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.5px;
}

.review_video_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 42px;
}

.review_content video {
  max-height: 500px;
  max-width: 100%;
  border-radius: 15px;
}

.review_video_play {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 11;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.review_video_play.active {
  visibility: visible;
  opacity: 1;
}

.review_video_play .video_play_btn {
  border: none;
  background: none;
}

.review_video_play .video_play_btn svg path {
  transition: 0.3s;
  fill-opacity: 0.5;
}

.review_video_play .video_play_btn:hover {
  cursor: pointer;
}

.review_video_play .video_play_btn:hover svg path {
  fill-opacity: 1;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}
/*
.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
} */

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 160s slide infinite linear;
}

.logos-slide img {
  max-width: 100px;
  object-fit: contain;
  height: 70px;
  margin: 0 40px;
}

@media screen and (max-width: 1300px) {
  .benefits_card_info .info_content .info_slider {
    width: 45%;
  }
}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner{
    margin-top: 15px;
    background: #00778b;
}

.sp-menu-item a:hover{
	color: #e7e7e7 !important;
}

/* Mobile header: logo left, burger right in one line */
@media (max-width: 991px){
	#sp-logo, #sp-menu{ 
    max-width: none !important;
  }

  /* чаще всего Helix использует эти зоны */
  #sp-header .container,
  #sp-header .row{
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  /* логотип */
  #sp-logo{
    width: auto !important;
    flex: 0 0 auto !important;
    margin-right: auto !important;
  }

  /* зона меню/бургера */
  #sp-menu{
    width: auto !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
  }

  /* сам тогглер (на разных версиях Helix селекторы отличаются) */
  #offcanvas-toggler,
  .offcanvas-toggler,
  .sp-menu-btn{
    margin-left: auto !important;
  }
}
/* =========================================================
   HELIX OFFCANVAS FIX + STYLE (добавь в самый конец preset.css)
   Причина: у Joomla/Helix меню часто <ul class="menu">,
   а у тебя .menu превращает его в drawer (fixed + translateX).
   ========================================================= */

/* 1) СБРОС: не даём <ul class="menu"> уезжать вправо */
ul.menu{
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  min-width: 0 !important;
  height: auto !important;
  max-height: none !important;
  transform: none !important;
  transition: none !important;
  background: transparent !important;
  overflow: visible !important;
  z-index: auto !important;
  padding-top: 30px !important;
}

/* 2) Overlay (Helix создаёт .offcanvas-overlay) */
.offcanvas-overlay{
  position: fixed;
  inset: 0;
  background: rgba(19,19,19,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9998;
}
.offcanvas-active .offcanvas-overlay{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 3) Панель offcanvas (Helix контейнер .offcanvas-menu) */
.offcanvas-menu{
  position: fixed;
  top: 70px !important;
  bottom: 0;
  /*width: min(420px, 90vw);*/
  /*background: #fff;*/
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
  z-index: 9999;
  overflow: hidden;
  transition: transform .32s ease;
  will-change: transform;
}

/* позиция справа/слева (Helix ставит классы на <body>) */
.offcanvs-position-right .offcanvas-menu{
  right: 0;
  transform: translateX(100%);
}
.offcanvs-position-left .offcanvas-menu{
  left: 0;
  transform: translateX(-100%);
}

/* состояние “открыто” */
.offcanvas-active.offcanvs-position-right .offcanvas-menu,
.offcanvas-active.offcanvs-position-left  .offcanvas-menu{
  transform: translateX(0);
}

/* 4) Кнопка закрытия (Helix: .close-offcanvas) */
.offcanvas-menu .close-offcanvas{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(19,19,19,.08);
  color: #131313 !important;
  text-decoration: none;
  z-index: 2;
  transition: background .2s ease, transform .2s ease;
}
.offcanvas-menu .close-offcanvas:hover{
  background: rgba(19,19,19,.14);
  transform: scale(1.03);
}

/* 5) Внутренности (Helix: .offcanvas-inner) */
.offcanvas-menu .offcanvas-inner{
  height: 100%;
  overflow-y: auto;
  padding: 70px 22px 22px; /* отступ сверху под крестик */
}

/* 6) У тебя глобально a{color:white;} — в offcanvas нужно сделать тёмные ссылки */
.offcanvas-menu,
.offcanvas-menu a{
  color: #131313 !important;
}
.offcanvas-menu a:hover{
  color: #00778b !important;
}

/* 7) Красивое меню внутри offcanvas */
.offcanvas-menu ul.menu{
  list-style: none;
  margin: 0;
  padding: 0;
}
.offcanvas-menu ul.menu > li{
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.offcanvas-menu ul.menu > li > a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* подменю */
.offcanvas-menu ul.menu ul{
  list-style: none;
  margin: 0 0 12px;
  padding: 0 0 0 14px;
}
.offcanvas-menu ul.menu ul li a{
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  opacity: .9;
  text-decoration: none;
}

/* 8) Контакты Helix (Show Contact обычно выводит список .sp-contact-info) */
.offcanvas-menu .sp-contact-info{
  list-style: none;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offcanvas-menu .sp-contact-info li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.offcanvas-menu .sp-contact-info li i,
.offcanvas-menu .sp-contact-info li svg{
  color: #00778b;
  opacity: .95;
}
.offcanvas-menu .sp-contact-info li a,
.offcanvas-menu .sp-contact-info li span{
  font-size: 14px;
  line-height: 1.25;
}

/* 9) Чуть приятнее логотип/модули сверху (если включен Show Logo) */
.offcanvas-menu .sp-module{
  margin: 0 0 18px;
}

/* ===== FIX: не ломаем Joomla ul.menu своими стилями ===== */
/* ВАЖНО: если у тебя есть правила .menu{...} (position/transform и т.п.) — УДАЛИ или переименуй их.
   Стиль для панели делай ТОЛЬКО через .offcanvas-menu ... */

/* Чиним “пропало” из-за глобального a{color:white} */
.offcanvas-menu,
.offcanvas-menu a{
  color:#131313 !important;
}

/* Делаем нормальный поток: всё одно под другим */
.offcanvas-menu .offcanvas-inner{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:18px;
}

/* Твой верхний блок (логотип+телефоны+кнопка) */
.offcanvas-menu .oc-head{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:14px;
  border-radius:16px;
  background:#131313;
  color:#fff;
}

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

.offcanvas-menu .oc-logo img{
  height:46px;
  width:auto;
  display:block;
}

.offcanvas-menu .oc-phones{
  display:flex;
  flex-direction:column;
  gap:6px;
  line-height:1.15;
  font-weight:600;
}

/* Кнопка на всю ширину */
.offcanvas-menu .oc-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:14px 12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
}

/* Меню внутри оффканваса */
.offcanvas-menu .offcanvas-inner ul.menu{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.offcanvas-menu .offcanvas-inner ul.menu > li > a,
.offcanvas-menu .offcanvas-inner ul.menu > li > .menu-separator{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-radius:12px;
  /*background:#f7f7f7;*/
  color:#131313 !important;
  text-decoration:none;
  font-weight: 600;
}

/* Стрелки/тогглеры подменю — если нужно */
.offcanvas-menu .offcanvas-inner ul.menu > li.menu-parent > a > .menu-toggler{
  color:#131313;
}

/* =========================
   OFFCANVAS (Helix) – Clean UI
   ========================= */

/* A) Сам контейнер: белый фон */
.offcanvas-menu.oc-offcanvas{
  background:#fff !important;
  color:#131313 !important;
}

/* Важно: у тебя глобально a{color:white;} — в offcanvas делаем тёмные ссылки */
.offcanvas-menu.oc-offcanvas a{
  color:#131313 !important;
  text-decoration:none;
  font-weight: 500;
}
.offcanvas-menu.oc-offcanvas a:hover{
  color:#00778b !important;
}

/* B) Верх: логотип + крестик в одну линию */
.offcanvas-menu.oc-offcanvas .oc-offcanvas__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 18px 14px;
  /*background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);*/
}

/* Лого не сжимается */
.offcanvas-menu.oc-offcanvas .oc-offcanvas__logo{
  flex:0 0 auto;
  min-width:0;
}
.offcanvas-menu.oc-offcanvas .oc-offcanvas__logo img,
.offcanvas-menu.oc-offcanvas .oc-offcanvas__logo svg{
  display:block;
  height:46px;
  width:auto;
  max-width:180px;
}

.offcanvas-menu.oc-offcanvas .oc-offcanvas__logo-link{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

/* Крестик */
.offcanvas-menu.oc-offcanvas .oc-offcanvas__close{
  flex:0 0 auto;
  width:42px;
  height:42px;
  border-radius:12px;
  background:rgba(19,19,19,.06);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  margin-top: -40px;
}
.offcanvas-menu.oc-offcanvas .oc-x{
  width:18px;
  height:18px;
  position:relative;
  display:block;
}
.offcanvas-menu.oc-offcanvas .oc-x::before,
.offcanvas-menu.oc-offcanvas .oc-x::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:18px;
  height:2px;
  background:#131313;
  transform-origin:center;
}
.offcanvas-menu.oc-offcanvas .oc-x::before{ transform:translate(-50%,-50%) rotate(45deg); }
.offcanvas-menu.oc-offcanvas .oc-x::after { transform:translate(-50%,-50%) rotate(-45deg); }

/* C) Внутренности: вертикальный поток */
.offcanvas-menu.oc-offcanvas .oc-offcanvas__inner{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:18px;
}

/* D) КРИТИЧЕСКОЕ: нейтрализуем твоё .menu (если оно где-то осталось)
   Это не костыль, а обязательная защита, потому что Joomla menu = ul.menu */
.offcanvas-menu.oc-offcanvas ul.menu{
  position:static !important;
  transform:none !important;
  top:auto !important;
  right:auto !important;
  left:auto !important;
  height:auto !important;
  max-height:none !important;
  min-width:0 !important;
  background:transparent !important;
  overflow:visible !important;
  transition:none !important;
  z-index:auto !important;
  margin:0 !important;
  padding:0 !important;
}

/* E) Оформление списка меню */
.offcanvas-menu.oc-offcanvas .oc-offcanvas__menu .sp-module{
  margin:0 !important;
}
.offcanvas-menu.oc-offcanvas .oc-offcanvas__menu ul.menu{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.offcanvas-menu.oc-offcanvas .oc-offcanvas__menu ul.menu > li{
  margin:0;
}
.offcanvas-menu.oc-offcanvas .oc-offcanvas__menu ul.menu > li > a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-radius:14px;
  /*background:#f6f6f6;*/
  font-weight:600;
  font-size:18px;
}

/* Подменю (если есть) */
.offcanvas-menu.oc-offcanvas .oc-offcanvas__menu ul.menu ul{
  list-style:none;
  margin:8px 0 0;
  padding:0 0 0 10px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.offcanvas-menu.oc-offcanvas .oc-offcanvas__menu ul.menu ul a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  background:#fbfbfb;
  font-weight:500;
  font-size:14px;
}

/* F) Блок телефонов с бирюзовыми линиями */
.offcanvas-menu.oc-offcanvas .oc-offcanvas__phones{
  border-top:2px solid #00778b;
  border-bottom:2px solid #00778b;
  padding:16px 0;
}
.offcanvas-menu.oc-offcanvas .oc-offcanvas__phones-title{
  font-weight:700;
  font-size:14px;
  margin-bottom:10px;
  color:#131313;
}
.offcanvas-menu.oc-offcanvas .oc-offcanvas__phones-list{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-weight:700;
  line-height:1.15;
}
.offcanvas-menu.oc-offcanvas .oc-offcanvas__phones-list a{
  font-size:16px;
}

/* G) Кнопка */
.offcanvas-menu.oc-offcanvas .menu_btn_wrap{
  padding-top:2px;
}
.offcanvas-menu.oc-offcanvas .menu_btn_wrap .nav_btn{
  width:100% !important;
  height:46px !important;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  color:#fff !important;
}

/* На всякий случай: glow-btn псевдоэлемент пусть не вылезает */
.offcanvas-menu.oc-offcanvas .glow-btn::before{
  pointer-events:none;
}

.footer_right_map {
  position: relative;
  width: 100%;
  min-height: 320px; /* можешь поставить как на оригинале */
  overflow: hidden;
  border-radius: 16px;
}

#map {
  width: 100%;
  height: 100%;
}

a.our_benefits_btn{
	padding-top: 16px;
}