:root {
  --color-orange: #FF6900;
  --color-orange-light: #F39314;
  --color-orange-extra-light: #FEF5E8;
  --color-gray-light:#FAFAFA;
  --burger-menu-color: #fff;
  --burger-menu-width: 40px;
  --burger-menu-height: 40px;
  --burger-top-plus: 6px;
  --burger-top-minus: -6px;
  --burger-line-height: 2px;
  --burger-line-round: 8px;
  --section-indent: 120px;
}

html {
  scrollbar-gutter: stable;
}

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

.no-scroll {
  padding-left: 0;
  height: auto;
}

.custom-container {
  z-index: 2;
  position: relative;
}

.btn:first-child:active {
  color: #fff;
  border-color: var(--main-brand-active-color);
}

section {
  overflow: hidden;
}

.light-gray-bg {
  background-color: var(--color-gray-light);
}

.brand-btn {
  background-color: var(--color-orange);
  color: #FFF;
  height: 66px;
  border-radius: 12px;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.brand-btn:hover {
  opacity: 0.85;
  background-color: var(--color-orange);
  color: #FFF;
}

.brand-btn-leaky {
  background-color: transparent;
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
}

.brand-btn-leaky:hover {
  opacity: 1;
  background-color: var(--color-orange);
}

.section-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-indents {
  padding-top: calc(var(--section-indent) / 3);
  padding-bottom: calc(var(--section-indent) / 3);
}

.section-title {
  font-size: 25px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
}

.notification {
  position: relative;
}

.notification::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #00E910;
  outline: 4px solid #fff;
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  z-index: 2;
}

.show-more-btn-icon {
  margin-left: 12px;
  display: flex;
  top: 1px;
  position: relative;
}

.site-header {
  width: 100%;
  height: 68px;
  background: linear-gradient(0deg, rgb(249, 249, 249), rgb(255, 255, 255) 100%);
  border-bottom: 1px solid #D6D6D6;
  display: flex;
  align-items: center;
  justify-content: center !important;
  transition: height 0.25s ease;
}

.site-header.small-header {
  height: 56px;
}

.header__inner {
  margin-left: 0;
  margin-right: 0;
}

.logo-header {
  width: 100%;
  max-width: 110px;
  flex-shrink: 0;
}

.header__burger {
  width: var(--burger-menu-width);
  height: var(--burger-menu-height);
  position: relative;
  order: 10;
  margin-left: 12px;
  transition-duration: 1s;
  background-color: transparent;
  flex-shrink: 0;
  background-color: var(--color-orange);
  border-radius: 4px;
  cursor: pointer;
}

.header__burger:hover {
  background-color: #FB7C24;
}

.header__burger span {
  height: var(--burger-line-height);
  border-radius: var(--burger-line-round);
  background-color: var(--burger-menu-color);
  width: 50%;
  position: absolute;
  transition-duration: 0.25s;
  transition-delay: 0.25s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__burger span::before {
  content: "";
  height: var(--burger-line-height);
  border-radius: var(--burger-line-round);
  background-color: var(--burger-menu-color);
  left: 0px;
  position: absolute;
  top: var(--burger-top-minus);
  width: 100%;
  transition-duration: 0.25s;
  transition: transform 0.25s, top 0.25s 0.25s;
}

.header__burger span::after {
  content: "";
  height: var(--burger-line-height);
  border-radius: var(--burger-line-round);
  background-color: var(--burger-menu-color);
  left: 0px;
  position: absolute;
  top: var(--burger-top-plus);
  width: 100%;
  transition-duration: 0.25s;
  transition: transform 0.25s, top 0.25s 0.25s;
}

.header__burger.open span {
  transition-duration: 0.1s;
  transition-delay: 0.25s;
  background: transparent;
}

.header__burger.open span:before {
  transition: top 0.25s, transform 0.25s 0.25s;
  top: 0px;
  transform: rotateZ(-45deg);
}

.header__burger.open span:after {
  transition: top 0.4s, transform 0.25s 0.25s;
  top: 0px;
  transform: rotateZ(45deg);
}

.header__connect {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  flex-shrink: 0;
  order: 3;
  margin-left: auto;
}

.header-navigation,
.header-tel-box,
.header-chat,
.chat-btn {
  display: none;
}

.header-navigation ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  list-style-type: none;
  margin-bottom: 0;
}
.header-navigation ul li a {
  color: #33302E;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition-duration: 0.2s;
}

.header-navigation li a:hover {
  opacity: 0.8;
}

.header-btn {
  height: 40px;
  padding-left: 8px;
  padding-right: 8px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  background-color: var(--color-orange);
  color: #FFF;
}

.login-btn {
  font-size: 0px;
}

.login-btn::before {
  content: "";
  display: inline-flex;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%0A%3Cpath%20d%3D%22M20%2021V19C20%2017.9391%2019.5786%2016.9217%2018.8284%2016.1716C18.0783%2015.4214%2017.0609%2015%2016%2015H8C6.93913%2015%205.92172%2015.4214%205.17157%2016.1716C4.42143%2016.9217%204%2017.9391%204%2019V21%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%0A%3Cpath%20d%3D%22M12%2011C14.2091%2011%2016%209.20914%2016%207C16%204.79086%2014.2091%203%2012%203C9.79086%203%208%204.79086%208%207C8%209.20914%209.79086%2011%2012%2011Z%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%0A%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.cart-btn::before {
  content: "";
  display: inline-flex;
  width: 19px;
  height: 19px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%0A%20%20%3Cpath%20d%3D%22M9%2022C9.55228%2022%2010%2021.5523%2010%2021C10%2020.4477%209.55228%2020%209%2020C8.44772%2020%208%2020.4477%208%2021C8%2021.5523%208.44772%2022%209%2022Z%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%0A%20%20%3Cpath%20d%3D%22M20%2022C20.5523%2022%2021%2021.5523%2021%2021C21%2020.4477%2020.5523%2020%2020%2020C19.4477%2020%2019%2020.4477%2019%2021C19%2021.5523%2019.4477%2022%2020%2022Z%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%0A%20%20%3Cpath%20d%3D%22M1%201H5L7.68%2014.39C7.77144%2014.8504%208.02191%2015.264%208.38755%2015.5583C8.75318%2015.8526%209.2107%2016.009%209.68%2016H19.4C19.8693%2016.009%2020.3268%2015.8526%2020.6925%2015.5583C21.0581%2015.264%2021.3086%2014.8504%2021.4%2014.39L23%206H6%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%0A%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.header-chat {
  --header-chat-button-size: 34px;
  --header-chat-panel-gap: 6px;
  --header-chat-panel-padding: 8px;
  position: relative;
  flex-shrink: 0;
  z-index: 3;
}

.header-chat__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--color-orange);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.header-chat__toggle.notification::after {
  display: none;
}

.header-chat__toggle.chat-btn--has-unread.notification::after {
  display: block;
}

.chat-btn::before {
  content: "";
  display: inline-flex;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%0A%3Cpath%20d%3D%22M8%209H16M8%2013H14M18%204C18.7956%204%2019.5587%204.31607%2020.1213%204.87868C20.6839%205.44129%2021%206.20435%2021%207V15C21%2015.7956%2020.6839%2016.5587%2020.1213%2017.1213C19.5587%2017.6839%2018.7956%2018%2018%2018H13L8%2021V18H6C5.20435%2018%204.44129%2017.6839%203.87868%2017.1213C3.31607%2016.5587%203%2015.7956%203%2015V7C3%206.20435%203.31607%205.44129%203.87868%204.87868C4.44129%204.31607%205.20435%204%206%204H18Z%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%0A%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.header-chat--open .header-chat__toggle {
  background-color: #fff;
  border: 2px solid var(--color-orange);
}

.header-chat--open .chat-btn::before {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M18%206L6%2018M6%206L18%2018%22%20stroke%3D%22%23FF6900%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}

.header-chat__panel {
  position: absolute;
  top: 50%;
  right: calc(100% + 6px);
  display: flex;
  align-items: center;
  gap: var(--header-chat-panel-gap);
  padding: var(--header-chat-panel-padding);
  background-color: #fcfcfc;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(24px, -50%);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

@media (max-width: 373.98px) {
  .header-chat {
    --header-chat-button-size: 30px;
    --header-chat-panel-gap: 4px;
    --header-chat-panel-padding: 6px;
  }
}

.header-chat--open .header-chat__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.header-chat__item {
  width: var(--header-chat-button-size);
  height: var(--header-chat-button-size);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.header-chat__item:hover {
  opacity: 0.85;
}

.header-chat__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-menu-opened {
  overflow: hidden;
}

.header-menu-modal {
  position: fixed;
  top: 68px;
  right: 0;
  left: 0;
  height: calc(100dvh - 68px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, top 0.25s ease, height 0.25s ease;
}

.site-header.small-header .header-menu-modal {
  top: 56px;
  height: calc(100dvh - 56px);
}

.header-menu-modal--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(51, 48, 46, 0.28);
}

.header-menu-modal__container {
  position: relative;
  height: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  overflow-y: auto;
}

.header-menu-modal__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 30px 24px;
  border: 1px solid #D6D6D6;
  border-radius: 16px;
  background-color: #FAFAFA;
  box-shadow: 0 20px 60px rgba(51, 48, 46, 0.12);
}

.header-menu-modal .footer-box-top__center {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.header-menu-modal .footer-box-top__center .footer-navigate-item {
  width: 100%;
  margin: 0;
}

.header-menu-modal .footer-box-top__center .footer-navigate-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.header-menu-modal .footer-box-top__center .footer-navigate-item-head .footer-navigate-item-title {
  margin-bottom: 0;
}

.header-menu-modal .footer-box-top__center .footer-navigate-item-title,
.header-menu-modal .footer-box-top__right .footer-navigate-item-title {
  font-size: 23px;
  margin-bottom: 14px;
}

.header-menu-modal .footer-box-top__center .navbar-nav {
  padding-left: 0;
}

.header-menu-modal .footer-box-top__center .nav-item + .nav-item {
  margin-top: 6px;
}

.header-menu-modal .footer-box-top__center .nav-link,
.header-menu-modal .footer-box-top__right .footer-contacts-item__text,
.header-menu-modal .footer-box-top__right .footer-tel-box__text,
.header-menu-modal .footer-box-top__right .footer-soc-box-title {
  font-size: 14px;
}

.header-menu-modal .footer-box-top__right {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.header-menu-modal .footer-box-top__right .footer-box-top__item,
.header-menu-modal .footer-box-top__right .footer-box-top__item:first-child {
  width: 100%;
}

.header-menu-modal .footer-box-top__right .footer-box-top__wrap {
  margin-bottom: 0;
}

.header-menu-modal .footer-box-top__center .footer-navigate-item--open .header-menu-mobile-toggle::before {
  transform: rotate(180deg);
}

.header-menu-mobile-toggle {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background-color: #F39314;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.header-menu-mobile-toggle::before {
  content: "";
  width: 12px;
  height: 7px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1%201L6%206L11%201%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}

.header-menu-mobile-toggle:hover {
  opacity: 0.9;
}

@media (max-width: 1249.98px) {
  .header-menu-modal .footer-box-top__right {
    order: 1;
  }
  .header-menu-modal .footer-box-top__center {
    order: 2;
  }
}

@media (max-width: 1249.98px) and (min-width: 768px) {
  .footer .footer-box-top__right {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 30px;
  }
}

@media (max-width: 767.98px) {
  .header-menu-modal .footer-box-top__center .header-menu-mobile-toggle {
    display: inline-flex;
  }

  .header-menu-modal .footer-box-top__center .footer-navigate-item .navbar-nav {
    display: none;
  }

  .header-menu-modal .footer-box-top__center .footer-navigate-item--open .navbar-nav {
    display: block;
  }
    
  .footer-address-desktop {
    display: none;
  }
  .footer-box-top__right .footer-box-top__wrap {
    margin-bottom: 0;
  }
  .footer-address-mobile .footer-soc {
    margin-bottom: 30px;
  }
    
  .footer-box-top__right .footer-box-top__wrap {
    flex-direction: column;
    width: 100%;
    row-gap: 16px;
  }
  .footer-box-top__right .footer-tel-box,
  .footer-box-top__right .footer-soc {
    width: 100%;
    max-width: 100%;
  }
  .footer-box-top__right .footer-soc-box {
    flex-wrap: wrap;
    max-width: 100%;
  }
}

.site-footer {
  padding-top: 40px;
  padding-bottom: 15px;
}

.site-footer {
  background-color: #FAFAFA;
  border-top: 1px solid #D6D6D6;
}

.footer-navigate-item {
  margin-bottom: 30px;
}

.footer-navigate-item-title {
  font-size: 23px;
  margin-bottom: 15px;
  letter-spacing: 0.03em;
}

.navbar-nav li a {
  color: #83807E;
  font-size: 14px;
  line-height: 1.4;
}

.site-footer .navbar-nav li a,
.header-menu-modal .footer-box-top__center .navbar-nav li a {
    font-size: 17px;
    line-height: 1.2;
}

.footer__logo {
  max-width: 190px;
}

.footer-box-top__center {
  margin-top: 40px;
  padding-left: 24px;
  order: 3;
}

.footer-box-top__right {
  margin-top: 40px;
  padding-left: 24px;
  order: 2;
}

.footer-box-top__right .footer-box-top__box,
.footer-box-top__right .footer-contacts-item {
  margin-bottom: 12px;
}

.footer-box-bottom {
  padding-top: 20px;
  border-top: 1px solid #EBECF0;
}

.footer-cop {
  color: #33302E;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
  padding-left: 26px;
  padding-right: 26px;
}

.footer-tel-box {
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}

.footer-tel-box__text {
  font-size: 14px;
  font-weight: 400;
}

.footer-tel-box__time {
  position: relative;
  padding-left: 20px;
}

.footer-tel-box__time::before {
  content: "";
  position: absolute;
  display: flex;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 20px;
  background-color: #00E910;
}

.footer-tel-box__link {
  color: var(--color-orange-light);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
}
.footer-callback-link {
  color: #33302E;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-soc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 5px;
}

.footer-soc-box-title {
  color: #33302E;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-soc-box-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-soc .footer-soc-box-title::before {
  background-color: #FF9A4D;
}

.footer-address .footer-soc-box-title::before {
  background-color: #5D9EE6;
}

.footer-soc-box {
  display: flex;
  gap: 10px;
}

.footer-soc-icon {
  width: 36px;
  aspect-ratio: 1/1;
  display: flex;
  flex-shrink: 0;
}

.footer-soc-icon-sm {
  width: 24px;
}

.footer-soc-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-box-top {
  display: flex;
  flex-direction: column;
}

.footer-box-top__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
  gap: 20px;
  flex-direction: column;
}

.footer-soc-box-title {
  top: -1px;
  position: relative;
}

.footer-box-top__box {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
}

.footer-contacts-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: 15px;
}

.footer-contacts-item__text {
  color: #33302E;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.footer-contacts-item__icon {
  width: 20px;
  height: 20px;
  top: 1px;
  position: relative;
}

.footer-contacts-item:last-child {
  margin-bottom: 0;
}

.site-form {
  z-index: 2;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.site-form .form-check {
  position: relative;
  width: 100%;
  margin-left: 0;
}
.site-form .form-check-label,
.site-form .form-check-label a {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 0;
  margin-bottom: 0;
}
.site-form .form-check-input {
  width: 16px;
  height: 16px;
  padding: 0;
  top: 45%;
  transform: translateY(-50%);
  position: absolute;
  margin-top: 0;
}
.site-form .form-check-label {
  padding-left: 5px;
}
.site-form .form-check-input:checked {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}
.site-form .form-check-input:focus {
  border-color: var(--color-orange);
}

.site-form__field {
  margin-bottom: 20px;
  width: 100%;
}
.site-form__field label {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 25px;
}
.site-form__field input {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  background-color: #fff;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 18px;
  color: #33302E;
}
.site-form__field input::-moz-placeholder {
  font-size: 14px;
  color: #C3C4C8;
}
.site-form__field input::placeholder {
  font-size: 14px;
  color: #C3C4C8;
}

.site-form__submit {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 12px;
  border: 2px solid #FFF;
  transition-duration: 0.2s;
}

.site-form__submit:hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.add-address-btn {
  width: 100%;
  color: #FFF;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  border-radius: 8px;
  border: 1px solid #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  margin-bottom: 20px;
  padding-left: 16px;
  transition-duration: 0.2s;
}
.add-address-btn span {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1.5px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding-bottom: 1px;
  margin-right: 10px;
}

.add-address-btn:hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.connect-liner-bottom-wrap {
  width: 100%;
}
.connect-form-actions {
  width: 100%;
}
.individual-connect-form .connect-form-actions .form-check,
.individual-connect-form .connect-form-actions .form-check-label {
  width: 100%;
  max-width: 100%;
}
.individual-connect-form .connect-form-actions .form-check-label {
  display: block;
  overflow-wrap: anywhere;
}

/* custom select dropdown */
.dropdown {
  position: relative;
}
.dropdown img {
  width: 28px;
  height: 28px;
}
.dropdown p {
  margin-bottom: 0;
}

.dropdown__button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  background-color: #fff;
  padding-left: 15px;
  padding-right: 15px;
  color: #33302E;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  cursor: pointer;
}

.dropdown__button:focus, .dropdown__button--active {
  outline: none;
  box-shadow: none;
}

.dropdown__button--active.dropdown__button::after {
  transform: rotate(180deg);
  top: 25%;
}

.dropdown__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2228%22%20height%3D%2228%22%20viewBox%3D%220%200%2028%2028%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%0A%20%20%3Cpath%20d%3D%22M7%2010.5L14%2017.5L21%2010.5%22%20stroke%3D%22%2333302E%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%0A%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

.dropdown__list {
  display: none;
  position: absolute;
  left: 0;
  top: 70px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  z-index: 1;
}

.dropdown__list--visible {
  display: block;
}

.popup .dropdown__list {
  top: auto;
  bottom: 70px;
  z-index: 10;
}

.dropdown__list-item {
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #E9E9E9;
  padding: 12px 20px;
  color: #33302E;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  cursor: pointer;
}

.dropdown__list-item:first-child {
  border-radius: 6px 6px 0 0;
}

.dropdown__list-item:last-child {
  border-radius: 0 0 6px 6px;
  border-bottom: none;
}

.dropdown__list-item:hover {
  background: rgba(227, 227, 227, 0.26);
}

.dropdown__input-hidden {
  display: none;
}

.form-check {
  margin-top: 20px;
}

.site-main {
  margin-top: 68px;
  transition: margin-top 0.25s ease;
}

.site-header.small-header ~ .site-main {
  margin-top: 56px;
}

.hero-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media (min-width: 374px) {
  .logo-header {
    max-width: 157px;
  }
  .footer-box-top__wrap {
    flex-direction: row;
  }
  .dropdown__button {
    padding-left: 25px;
    padding-right: 25px;
  }
  .add-address-btn {
    font-size: 16px;
  }
}
@media (min-width: 500px) {
  .section-title {
    font-size: 34px;
    margin-bottom: 25px;
  }
  .footer-box-top__wrap {
    flex-direction: column;
    row-gap: 25px;
  }
  .footer-tel-box__text {
    display: none;
  }
  .footer-tel-box__time {
    display: flex;
    order: 1;
  }
  .footer-tel-box__link {
    font-size: 20px;
  }
  .footer-tel-box {
    row-gap: 5px;
  }
}
@media (min-width: 768px) {
  .site-header {
    height: 80px;
  }
  .site-header.small-header {
    height: 64px;
  }
  .site-main {
    margin-top: 80px;
  }
  .site-header.small-header ~ .site-main {
    margin-top: 64px;
  }
  .section-indents {
    padding-top: calc(var(--section-indent) / 1.5);
    padding-bottom: calc(var(--section-indent) / 1.5);
  }
  .section-title {
    font-size: 52px;
  }
  .site-form__field input::-moz-placeholder {
    font-size: 18px;
  }
  .site-form__field input::placeholder {
    font-size: 18px;
  }
  .site-form__submit {
    height: 76px;
    font-size: 20px;
  }
  .site-form__field input {
    height: 76px;
  }
  .site-form .form-check {
    position: relative;
    width: -moz-max-content;
    width: max-content;
  }
  .dropdown__button {
    height: 76px;
  }
  .dropdown__list {
    top: 90px;
  }
  .dropdown__list-item {
    padding: 18px 20px;
  }
  .form-check {
    margin-top: 25px;
  }
  .site-form .form-check-input {
    width: 20px;
    height: 20px;
    top: 40%;
  }
  .site-form .form-check-label {
    padding-left: 10px;
  }
  .site-form {
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
  .header-tel-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-tel-box a {
    color: #33302E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-decoration-line: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip: ink;
            text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
  }
  .header-tel-box .header-tel-box__link {
    font-size: 20px;
    color: var(--color-orange-light);
    text-decoration: none;
  }
  .header-tel-box a:hover {
    text-decoration: none;
  }
  .header-btn,
  .header__burger {
    border-radius: 8px;
  }
  .chat-btn {
    display: flex;
  }
  .header-chat {
    display: flex;
    --header-chat-button-size: 40px;
    --header-chat-panel-gap: 10px;
    --header-chat-panel-padding: 10px;
  }
  .header-chat__panel {
    right: auto;
    left: calc(100% + 10px);
    transform: translate(-24px, -50%);
  }
  .header-chat--open .header-chat__panel {
    transform: translate(0, -50%);
  }
  .brand-btn {
    font-size: 20px;
    height: 76px;
  }
  .hero-text {
    font-size: 20px;
    margin-bottom: 40px;
  }
  
  .footer-box-top__center {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding-left: 0;
    margin-bottom: 50px;
  }
  .footer-box-top__right {
    padding-left: 0;
  }
  .footer-navigate-item {
    width: 210px;
    margin-bottom: 0;
  }
  .footer-contacts-item__text {
    font-size: 16px;
  }
  .footer-address-mobile {
      display: none; 
  }
  .footer-box-top__right .footer-box-top__item:first-child {
    width: 250px;
  }
  .footer-box-top__right {
    display: flex;
  }
  .footer-box-top__item {
    width: -moz-max-content;
    width: max-content;
  }
  .footer-cop {
    text-align: center;
    font-size: 16px;
  }
  .footer-cop br {
    display: none;
  }
  .footer-box-bottom {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .footer-contacts-item__icon {
    top: 2px;
  }
  .footer-box-top__center {
    max-width: 735px;
  }
  .footer-box-top__right .footer-box-top__item:nth-child(2) {
    flex-grow: 1;
    max-width: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-box-top__right .footer-box-top__item:nth-child(2) .footer-box-top__box {
    width: calc(50% - 25px);
  }

  .header-menu-modal {
    top: 80px;
    height: calc(100dvh - 80px);
  }
  .site-header.small-header .header-menu-modal {
    top: 64px;
    height: calc(100dvh - 64px);
  }
  .header-menu-modal__container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header-menu-modal__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px;
    border-radius: 16px;
  }
  .header-menu-modal .footer-box-top__center {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: none;
    margin: 0;
  }
  .header-menu-modal .footer-box-top__center .footer-navigate-item {
    width: auto;
  }
  .header-menu-modal .footer-box-top__right {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 30px;
  }
  .header-menu-modal .footer-box-top__right .footer-box-top__item:nth-child(2) {
    max-width: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .header-menu-modal .footer-box-top__right .footer-box-top__item:nth-child(2) .footer-box-top__box {
    width: calc(50% - 15px);
  }

}
@media (max-width: 999.98px) {
    .header-chat__toggle.notification {
        margin-left: 1rem;
    }
    .header-tel-box {
        margin-left: 1rem;
    }
}
@media (min-width: 1000px) {
  .header-navigation {
    display: flex;
  }
  .header__burger {
    order: 0;
    margin-left: 0;
  }
  .header__connect {
    column-gap: 18px;
    margin-left: 18px;
  }
  .header-chat__panel {
    right: calc(100% + var(--header-chat-panel-gap));
    left: auto;
    transform: translate(24px, -50%);
  }
  .header-chat--open .header-chat__panel {
    transform: translate(0, -50%);
  }
}
@media (min-width: 1200px) {
  .section-indents {
    padding-top: var(--section-indent);
    padding-bottom: var(--section-indent);
  }
  .footer-tel-box__text {
    margin-top: 7px;
  }
  .site-form .form-check {
    position: relative;
    width: -moz-max-content;
    width: max-content;
    margin-right: 0;
    margin-left: auto;
  }
  .hero-text {
    margin-bottom: 50px;
  }
}
@media (min-width: 1250px) {
  :root {
    --burger-menu-width: 52px;
    --burger-menu-height: 52px;
    --burger-top-plus: 7px;
    --burger-top-minus: -7px;
    --burger-line-height: 2px;
    --burger-line-round: 8px;
  }
  .site-header {
    height: 124px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-header.small-header {
    height: 64px;
  }
  .site-main {
    margin-top: 124px;
  }
  .site-header.small-header ~ .site-main {
    margin-top: 64px;
  }
  .header-menu-modal {
    top: 124px;
    height: calc(100dvh - 124px);
  }
  .site-header.small-header .header-menu-modal {
    top: 64px;
    height: calc(100dvh - 64px);
  }
  .logo-header {
    max-width: 210px;
  }
  .header__connect {
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-left: 0;
  }
  .header-chat {
    --header-chat-button-size: 52px;
    --header-chat-panel-gap: 26px;
    --header-chat-panel-padding: 14px 30px;
  }
  .site-header.small-header .header-chat {
    --header-chat-button-size: 40px;
    --header-chat-panel-gap: 20px;
    --header-chat-panel-padding: 12px 24px;
  }
  .cart-btn::before {
    width: 24px;
    height: auto;
    aspect-ratio: 1/1;
  }
  .login-btn::before {
    width: 24px;
    height: auto;
    aspect-ratio: 1/1;
  }
  .header-btn {
    font-size: 16px;
    aspect-ratio: initial;
    padding-left: 13px;
    padding-right: 13px;
    height: 52px;
  }
  .header-chat__toggle {
    width: 52px;
    padding-left: 13px;
    padding-right: 13px;
  }
  .login-btn::before {
    margin-right: 8px;
  }
  .site-footer {
    padding-top: 60px;
  }
  .footer-box-top {
    display: grid;
    grid-template-columns: minmax(0, 945px) minmax(0, 300px);
    grid-template-areas: "menu contacts";
    column-gap: 40px;
    padding-bottom: 40px;
  }
  .footer-box-top__center {
    grid-area: menu;
    order: 2;
    margin-top: 0;
    width: 100%;
  }
  .footer-box-top__right {
    grid-area: contacts;
    width: 100%;
    order: 3;
    margin-top: 0;
    flex-direction: column;
    row-gap: 22px;
    min-width: 0;
  }
  .footer-box-top__item,
  .footer-box-top__right .footer-box-top__item:first-child {
    width: 100%;
    min-width: 0;
  }
  .footer-box-top__right .footer-box-top__item:first-child {
    max-width: none;
    flex-shrink: 0;
  }
  .footer-navigate-item-title {
    margin-bottom: 20px;
  }
  .footer-navigate-item .nav-item {
    margin-bottom: 5px;
  }
  .footer-box-top__center {
    max-width: initial;
  }
  .footer-box-top__right .footer-box-top__item:nth-child(2) .footer-box-top__box {
    width: 100%;
  }
  .footer-box-top__right .footer-box-top__item:nth-child(2) {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: none;
  }
  .header-menu-modal__container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .header-menu-modal__content {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: flex-start;
    gap: 60px;
    margin-top: 20px;
    padding: 50px 60px;
  }
  .header-menu-modal .footer-box-top__center {
    grid-area: auto;
    display: grid;
    order: 1;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 40px;
    width: 100%;
    margin: 0;
    max-width: none;
  }
  .header-menu-modal .footer-box-top__right {
    grid-area: auto;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 300px;
    margin: 0;
  }
  .header-menu-modal .footer-box-top__right .footer-box-top__item,
  .header-menu-modal .footer-box-top__right .footer-box-top__item:first-child {
    width: 100%;
  }
  .site-form {
    gap: 14px;
  }
}
@media (min-width: 1400px) {
  .footer-navigate-item {
    width: 220px;
  }
}
.connect-form-box {
  background-color: var(--color-orange-light);
  border-radius: 20px;
  padding: 40px 20px;
  position: relative;
}

.connect-form-section__title {
  color: #FFF;
  text-align: center;
  font-size: 23px;
  line-height: 1.4;
  z-index: 2;
  position: relative;
}

.connect-form-section__subtitle {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  text-align: center;
  line-height: 1.4;
  padding-left: 5px;
  padding-right: 5px;
  z-index: 2;
  position: relative;
  margin-bottom: 30px;
}

.connect-form-section-bg {
  width: 101%;
  height: 101%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.connect-form-box .site-form .site-form__connection-address {
  display: none;
  width: 100%;
}

.order-connection-section {
  padding-top: 0;
}

@media (min-width: 500px) {
  .connect-form-section__title {
    font-size: 34px;
  }
  .connect-form-section__subtitle {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .connect-form-section__subtitle {
    font-size: 20px;
  }
  .connect-form-section__title {
    font-size: 48px;
  }
  .connect-form-box {
    border-radius: 40px;
  }
  .connect-form-section {
    padding-top: calc(var(--section-indent) / 2);
    padding-bottom: calc(var(--section-indent) / 2);
  }
}
@media (min-width: 1250px) {
  .connect-form-box .site-form {
    max-width: initial;
    width: 100%;
    align-items: flex-start;
  }
  .connect-form-box .individual-connect-form {
    align-items: flex-start;
  }
  .connect-form-box .site-form__submit {
    margin-left: auto;
  }
  .connect-liner-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }
  .connect-liner-bottom-wrap .form-check {
    margin-top: 0;
  }
  .add-address-btn {
    max-width: 284px;
    width: 100%;
    margin-bottom: 0;
  }
  .connect-form-box {
    padding: 65px 60px 80px 60px;
  }
  .order-connection-section .connect-form-section__subtitle br {
    display: none;
  }
  .order-connection-section .connect-form-box {
    padding-bottom: 60px;
  }
  .business-connect-form .site-form__field {
    width: calc(33.33% - 9.33px);
    margin-bottom: 0;
  }
  .business-connect-form .site-form {
    row-gap: 18px;
  }
  .business-connect-form.site-form .form-check {
    margin-left: auto;
    margin-right: auto;
  }
  .business-connect-form .site-form__submit {
    margin-top: 7px;
  }
  .connect-form-section__subtitle br {
    display: none;
  }
}
/* --- Shared: connection-lainer block (order-connection + connect-form) --- */

.connection-lainer__inner {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.order-connection-box {
  background-color: var(--color-orange-light);
  border-radius: 20px;
  padding: 40px 20px;
  position: relative;
}

.order-connection-box .section-title {
  color: #fff;
  font-size: 23px;
  margin-bottom: 20px;
}

.order-connection-box__content {
  z-index: 2;
  position: relative;
}

.order-connection-box__subtext {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.order-connection-box__plane {
  width: calc(100% + 20px);
  left: 0;
  position: relative;
}

.order-connection-box__subtitle {
  margin-top: 10px;
  color: #FFF;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.order-connection-box-bg {
  display: none;
}

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

.plus-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 35px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.plus-list li + li {
  margin-top: 13px;
}

.plus-list li strong {
  font-weight: 700;
}

.plus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20x%3D%220.75%22%20y%3D%220.75%22%20width%3D%2218.5%22%20height%3D%2218.5%22%20rx%3D%223.25%22%20stroke%3D%22white%22%20style%3D%22stroke%3Awhite%3Bstroke-opacity%3A1%3B%22%20stroke-width%3D%221.5%22%2F%3E%3Cpath%20d%3D%22M14%207L8.5%2012.5L6%2010%22%20stroke%3D%22white%22%20style%3D%22stroke%3Awhite%3Bstroke-opacity%3A1%3B%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.order-connection-box .brand-btn-leaky {
  margin-top: 20px;
  border-color: #fff;
  color: #fff;
  font-size: 20px;
  height: 76px;
}

.order-connection-box .brand-btn-leaky:hover {
  border-color: var(--color-orange);
}

.order-connection-bg {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.order-connection-box__plane-desc {
  display: none;
}

.connect-form-box .business-connect-form .site-form__submit-wrapper {
  margin-top: 28px;
}

.connect-form-box .business-connect-form .site-form__submit {
  width: 100%;
  margin-left: 0;
  margin-top: 0;
}

@media (min-width: 500px) {
  .order-connection-box .section-title {
    font-size: 35px;
  }
  .order-connection-box {
    padding: 60px 50px;
  }
  .plus-list li {
    font-size: 20px;
  }
  .order-connection-box__subtitle {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .order-connection-box__plane {
    width: calc(100% + 50px);
    margin-bottom: 30px;
  }
  .order-connection-box .brand-btn-leaky {
    margin-top: 50px;
  }
}
@media (min-width: 700px) {
  .order-connection-box__subtext {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .order-connection-box .section-title {
    font-size: 48px;
  }
  .order-connection-box {
    border-radius: 40px;
    width: 100%;
    height: auto;
  }
  .connect-form-50 {
    width: calc(50% - 10px);
  }
  .site-form .form-check {
    position: relative;
    width: max-content;
  }
}
@media (min-width: 1000px) {
  .order-connection-box .section-title {
    font-size: 52px;
    text-align: left;
    margin-bottom: 40px;
  }
  .order-connection-box__plane {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .order-connection-box__subtext {
    text-align: left;
    margin-bottom: 40px;
  }
  .order-connection-box .brand-btn-leaky {
    width: max-content;
    margin-left: 0;
  }
  .order-connection-box {
    padding: 100px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .order-connection-box .order-connection-box__plane {
    display: none;
  }
  .order-connection-box__plane-desc {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    aspect-ratio: 772/549;
  }
}
@media (min-width: 1200px) {
  .connection-lainer__inner {
    row-gap: 40px;
  }
}
@media (min-width: 1250px) {
  .connect-form-box .site-form .site-form__field,
  .connect-form-box .site-form__submit {
    width: calc(25% - 10.5px);
    margin-bottom: 0;
  }
  .connect-form-box .individual-connect-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 420px);
    column-gap: 20px;
    row-gap: 20px;
    align-items: start;
  }
  .connect-form-box .individual-connect-form .connect-form-name {
    grid-column: 1;
    width: 100%;
    min-width: 0;
  }
  .connect-form-box .individual-connect-form .connect-form-phone {
    grid-column: 2;
    width: 100%;
    min-width: 0;
  }
  .connect-form-box .individual-connect-form .connect-form-wide,
  .connect-form-box .individual-connect-form .add-address-btn {
    grid-column: 1 / 3;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }
  .connect-form-box .individual-connect-form .add-address-btn {
    justify-self: start;
    width: auto;
    max-width: 100%;
    padding-right: 16px;
  }
  .connect-form-box .individual-connect-form .connect-form-actions {
    grid-column: 3;
    grid-row: 1 / span 4;
    padding-top: 28px;
    width: 100%;
  }
  .connect-form-box .individual-connect-form .site-form__submit {
    width: 100%;
    margin-left: 0;
  }
  .connect-form-box .individual-connect-form .connect-liner-bottom-wrap {
    display: block;
    margin-top: 12px;
  }
  .connect-form-box .individual-connect-form .connect-liner-bottom-wrap .form-check {
    margin-top: 0;
    width: 100%;
  }
}

/* Popup */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 95%;
  max-width: 1290px;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  max-height: 95%;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-color-blue) transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: auto;
}

.popup.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  background: rgba(121, 121, 121, 0.025);
  backdrop-filter: blur(3px) saturate(140%);
  -webkit-backdrop-filter: blur(3px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.popup-overlay.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__container {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}

.popup__close {
  position: absolute;
  top: 55px;
  right: 40px;
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  z-index: 4;
  filter: brightness(0) saturate(100%) invert(100%) sepia(93%) saturate(0%) hue-rotate(172deg) brightness(107%) contrast(109%);
  cursor: pointer;
}

.popup__close::before,
.popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #0f172a;
  transform-origin: center;
}

.popup__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.callback-popup {
  width: min(95vw, 410px);
  max-width: 410px;
}

.callback-popup .popup__container {
  width: 100%;
  border-radius: 16px;
}

.callback-popup .popup__close {
  top: 30px;
  right: 30px;
  filter: none;
}

.callback-popup__body {
  min-height: 543px;
  padding: 50px 32px 46px;
  border: 2px solid var(--color-orange);
  border-radius: 16px;
  background-color: #fff;
}

.callback-popup__title {
  margin-bottom: 42px;
  color: #33302E;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
}

.callback-popup__form {
  display: flex;
  flex-direction: column;
}

.callback-popup__field {
  margin-bottom: 20px;
}

.callback-popup__field label {
  display: block;
  margin-bottom: 10px;
  padding-left: 30px;
  color: #33302E;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.callback-popup__field input,
.callback-popup__field textarea {
  width: 100%;
  height: auto;
  padding: 20px 15px;
  border: 1px solid #D6D6D6;
  border-radius: 10px;
  color: #33302E;
  font-size: 18px;
  line-height: 1.4;
}
.callback-popup__field textarea {
  height: auto;
}

.callback-popup__field input::placeholder {
  color: #D6D6D6;
}

.callback-popup__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 76px;
  margin-top: 4px;
  border: 2px solid var(--color-orange);
  border-radius: 12px;
  color: var(--color-orange);
  font-size: 20px;
  line-height: 1.5;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.callback-popup__submit:hover {
  background-color: var(--color-orange);
  color: #fff;
}

.callback-popup__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding-left: 22px;
}

.callback-popup__privacy input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-orange);
}

.callback-popup__privacy label,
.callback-popup__privacy a {
  color: #33302E;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.callback-popup__privacy a {
  text-decoration: underline;
}

@media (max-width: 850px) {
  .popup__close {
    top: 25px;
    right: 35px;
  }
}
@media (max-width: 500px) {
  .callback-popup__body {
    min-height: auto;
    padding: 46px 18px 36px;
  }
  .callback-popup__title {
    margin-bottom: 30px;
    font-size: 28px;
  }
  .callback-popup__privacy {
    padding-left: 0;
  }
  .popup__close {
    top: 15px;
    right: 20px;
  }
  .popup__close::before, .popup__close::after {
    width: 18px;
    height: 1px;
  }
}

/* --- Tariffs overview header + tabs (shared across /tariffs, /tv, /equipment, /service) --- */
.tariffs-overview {
  background: #fff;
  padding-top: 46px;
  padding-bottom: 40px;
}

.tariffs-overview__head {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.tariffs-overview__head .section-title {
  margin-bottom: 12px;
}

.tariffs-overview__lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.tariffs-overview__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
  gap: 0;
}

.tariffs-overview__tab {
  height: 52px;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  text-decoration: none;
  font-family: "Magistral", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  margin-left: -2px;
  border-radius: 0;
}

.tariffs-overview__tab:first-child {
  border-radius: 10px 0 0 10px;
  margin-left: 0;
}

.tariffs-overview__tab:last-child {
  border-radius: 0 10px 10px 0;
}

.tariffs-overview__tab--active {
  background: var(--color-orange);
  color: #fff;
}

.tariffs-overview__tab-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .tariffs-overview__tab .tariffs-overview__tab-icon {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .tariffs-overview__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .tariffs-overview__tab {
    min-width: 0;
    width: 100%;
    margin-left: 0;
    border-radius: 0 !important;
  }
}

@media (min-width: 768px) {
  .tariffs-overview {
    padding-top: 56px;
  }

  .tariffs-overview__lead {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .tariffs-overview__tabs {
    flex-wrap: nowrap;
  }

  .tariffs-overview__tab {
    min-width: 0;
    flex: 1 1 0;
    height: 56px;
    font-size: 15px;
    gap: 10px;
    padding: 0 28px;
  }

  .tariffs-overview__tab-icon {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 1920px) {
  .tariffs-overview {
    padding-top: 66px;
    padding-bottom: 50px;
  }

  .tariffs-overview__head .section-title {
    margin-bottom: 18px;
  }

  .tariffs-overview__tabs {
    margin-bottom: 36px;
  }

  .tariffs-overview__tab {
    min-width: 262px;
    height: 76px;
    font-size: 20px;
    gap: 12px;
    padding: 0 50px;
    border-radius: 0;
  }

  .tariffs-overview__tab:first-child {
    border-radius: 12px 0 0 12px;
  }

  .tariffs-overview__tab:last-child {
    border-radius: 0 12px 12px 0;
  }

  .tariffs-overview__tab-icon {
    width: 24px;
    height: 24px;
  }
}

/* --- Shared: Accordion --- */
.accordion-box {
  width: 100%;
  max-width: 900px;
}

.accordion__item {
  border-radius: 16px;
  border: 1px solid #EBECF0;
  background: #FFF;
  padding: 20px;
}

.accordion__item + .accordion__item {
  margin-top: 18px;
}

.accordion__button {
  position: relative;
  display: block;
  padding: 0 65px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.accordion__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: transform 0.3s ease;
  width: 40px;
  height: 40px;
  background-color: var(--color-orange-light);
  border-radius: 1000px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13%207L7%201L0.999999%207%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: 35%;
  background-repeat: no-repeat;
}

.accordion__item.accordion__item--opened .accordion__button::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L7%207L13%201%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
}

.accordion__item.accordion__item--opened .accordion__button {
  color: var(--color-orange-light);
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  border-radius: 4px;
}

.accordion__content {
  padding: 0;
  padding-top: 25px;
  color: #33302E;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.accordion__content > * {
  margin-bottom: 12px;
}

.accordion__content > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .accordion__item {
    padding: 30px;
  }
  .accordion__button {
    font-size: 20px;
  }
  .accordion__content {
    font-size: 16px;
  }
  .accordion__item + .accordion__item {
    margin-top: 20px;
  }
}


.question-service-box__top {
  padding-bottom: 25px;
  border-bottom: 1px solid #EBECF0;
}

.question-service-box__title {
  text-align: center;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 25px;
}

.question-service-box__text {
  color: #33302E;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 25px;
}

.question-service-box__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
}

.question-service-box__tel {
  text-align: center;
  font-size: 25px;
  line-height: 1.2;
  margin-top: 10px;
  color: #33302E;
}

.question-service-box__message {
  margin-top: 25px;
  margin-bottom: 15px;
}

.question-service-box .question-service-box__bottom .brand-btn-leaky {
  height: 60px;
  font-size: 16px;
  width: 100%;
  max-width: 330px;
}

@media (min-width: 768px) {
  .question-service-box__title {
    font-size: 32px;
    margin-bottom: 35px;
  }
  .question-service-box__text {
    font-size: 20px;
  }
  .question-service-box__top {
    padding-bottom: 45px;
  }
  .question-service-box__bottom {
    padding-top: 45px;
  }
  .question-service-box__tel {
    margin-top: 25px;
  }
  .question-service-box__message {
    margin-bottom: 25px;
  }
  .question-service-box__tel {
    font-size: 30px;
    margin-top: 25px;
  }
  .question-service-box .footer-soc-box .footer-soc-icon {
    width: 46px;
  }
  .question-service-box .brand-btn-leaky {
    height: 76px;
    font-size: 20px;
  }
  
}
