 
:root {
  --td-blue: #004E9C;
  --td-orange: #FDB414;
  --td-white: #FCFCFC;
  --td-gray: #313131;
  --td-radius: 3px;
  --td-font-title: "Ubuntu", Arial, sans-serif;
  --td-font-text: Arial, sans-serif;
}

/* ==============================
   ОБЩЕЕ
   ============================== */

.safe-hero *,
.safe-types *,
.safe-solutions *,
.safe-map-section *,
.storage-stories *,
.safe-tariffs *,
.storage-process *,
.safe-cases *,
.advantagBlock *,
.safe-service-info *,
.testimonials *,
.safe-useful * {
  box-sizing: border-box;
}

.safe-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--td-blue);
  border-radius: var(--td-radius);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transform: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.safe-btn:hover {
  text-decoration: none;
  transform: none;
}

.safe-btn--primary {
  color: var(--td-white);
  background: var(--td-blue);
}

.safe-btn--primary:hover {
  color: var(--td-blue);
  background: var(--td-white);
}

.safe-btn--secondary {
  color: var(--td-blue);
  background: var(--td-white);
}

.safe-btn--secondary:hover {
  color: var(--td-white);
  background: var(--td-blue);
}

#content ul.custom-list.type-2 {
  padding-left: 0;
  list-style: none;
}

#content ul.custom-list.type-2 li {
  position: relative;
  padding-left: 28px;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.55;
}

#content ul.custom-list.type-2 li:before {
    content: ""
  position: absolute;
  top: 0;
  left: 0;
  color: var(--td-orange);
 

  display: inline-block;
    vertical-align: middle;
    margin-top: 4px;
    font-family: "fontello";
    color: #fcb414;
    font-size: 10px;
}

/* ==============================
   БЛОК 1: HERO
   ============================== */
.page-section.pdb0 {
    background: var(--td-white) !important;
    padding: 60px;
}
.safe-hero {
  padding: 0px 0 30px !important;
  background: var(--td-white) !important;
  overflow: hidden;
}

.safe-hero__title-main {
  margin: 0 0 60px;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
}

.safe-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 20px;
  align-items: start;
}

.safe-hero__content {
  height: auto;
  padding: 30px;
  border: 2px solid var(--td-blue);
  border-radius: var(--td-radius);
  background: var(--td-white);
  box-shadow: none;
}

.safe-hero__content p {
  margin: 0 0 16px;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  text-align: left;
}

.safe-hero__content strong {
  color: var(--td-blue);
  font-family: var(--td-font-text);
  font-weight: 700;
}

.safe-hero__features {
  margin-bottom: 30px !important;
}

.safe-hero__address {
  margin-bottom: 30px !important;
}

.safe-hero__address strong {
  color: var(--td-gray);
}

.safe-hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 0;
}

.safe-hero__actions .safe-btn {
  width: 50%;
}

.safe-hero__media {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.safe-video-card {
  width: 100%;
  max-width: 380px;
  height: auto;
  padding: 0;
  border-radius: var(--td-radius);
  background: var(--td-gray);
  box-shadow: none;
  overflow: hidden;
}

.safe-video-card:before {
  display: none;
}

.safe-video-card__top {
  margin: 0;
  padding: 18px 20px;
  color: var(--td-white);
}

.safe-video-card__label {
  margin: 0 0 8px;
  color: var(--td-orange);
  font-family: var(--td-font-text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.safe-video-card__title {
  color: var(--td-white);
  font-family: var(--td-font-title);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.safe-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 12;
  overflow: hidden;
  border-radius: 0;
  background: var(--td-gray);
}

.safe-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.safe-video-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(252, 252, 252, .2);
}

.safe-video-tab {
  min-height: 44px;
  padding: 8px 6px;
  border: 0;
  border-right: 1px solid rgba(252, 252, 252, .2);
  border-radius: 0;
  color: var(--td-white);
  background: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.safe-video-tab:last-child {
  border-right: 0;
}

.safe-video-tab:hover,
.safe-video-tab.is-active {
  color: var(--td-gray);
  background: var(--td-orange);
}

/* ==============================
   БЛОК 2: Виды хранения
   ============================== */

.safe-types {
  padding: 30px 0 30px !important;
  background: var(--td-white) !important;
}

.safe-types h2 {
  margin: 0 0 60px;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.safe-types__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.safe-type-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--td-blue);
  border-radius: var(--td-radius);
  background: var(--td-white);
  box-shadow: none;
  transition: none;
}

.safe-type-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--td-blue);
  background: var(--td-white);
}

.safe-type-card__image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #f2f2f2;
}

.safe-type-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.safe-type-card__body {
  flex: 1;
  padding: 30px;
}

.safe-type-card__body h3 {
  margin: 0 0 20px;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.safe-type-card__body p {
  margin: 0;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

/* ==============================
   БЛОК 3: Отраслевые решения
   ============================== */

.safe-solutions {
  padding: 30px 0 !important;
  background: var(--td-white) !important;
}

.safe-solutions h2 {
  margin: 0 0 30px;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.safe-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.safe-solutions__card {
  padding: 30px;
  border: 2px solid var(--td-blue);
  border-radius: var(--td-radius);
  background: var(--td-white);
  box-shadow: none;
  transition: border-color .2s ease, background .2s ease;
}

.safe-solutions__card:hover {
  transform: none;
  border-color: var(--td-blue);
  background: var(--td-white);
  box-shadow: none;
}

.safe-solutions__icon {
  width: 32px;
  height: 32px;
  margin: 0 0 30px;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--td-blue);
  background: transparent;
}

.safe-solutions__icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.safe-solutions__card h3 {
  margin: 0 0 20px;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.safe-solutions__card p {
  margin: 0;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.safe-solutions__bottom {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.safe-solutions__bottom .safe-btn {
  padding-left: 30px;
  padding-right: 30px;
}

/* ==============================
   БЛОК 4: Карты
   ============================== */

.safe-map-section {
  padding: 30px 0!important;
  background: var(--td-white) !important;
}

.safe-map-section .section-title {
  margin: 0 0 60px !important;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.safe-map-section__map {
  margin-bottom: 0;
}

.safe-map-section__map iframe,
.safe-map-section__map ymaps,
.safe-map-section__map > div {
  max-width: 100%;
  border-radius: var(--td-radius);
}

.safe-map-spoiler__title {
  display: none;
}

.safe-map-spoiler__body {
  display: block;
}

/* ==============================
   БЛОК: Склады + иконки
   ============================== */

.storage-stories {
  padding: 30px 0 0 !important;
  background: var(--td-white) !important;
}

.storage-stories-card,
.p-card-stories.storage-stories-card {
  height: 100%;
  border-radius: var(--td-radius) !important;
  overflow: hidden;
  border-color: #004e9c;
}

.storage-stories-card img,
.p-card-stories.storage-stories-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--td-radius) !important;
}

.storage-stories-card .section-title {
  margin-bottom: 30px;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
}

.storage-stories-card__toggle {
  display: none;
  border-radius: var(--td-radius) !important;
}

.storage-stories-card__description {
  display: block;
}

.storage-stories .icons-box {
  margin-top: 30px;
  margin-bottom: 0;
  padding-bottom: 0 !important;
}

.storage-stories .icons-wrap,
.storage-stories .item-box,
.storage-stories .mx-icons-box {
  border-radius: var(--td-radius) !important;
}

.storage-stories .mx-icons-box svg {
  width: 32px;
  height: 32px;
}

.storage-stories .mx-icons-box path {
  fill: var(--td-blue);
}

.storage-stories .icons-box-title {
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.45;
}

/* ==============================
   БЛОК 5: Тарифы
   ============================== */

.safe-tariffs {
  padding: 30px 0 !important;
  background: var(--td-white) !important;
}

.safe-tariffs__head {
  margin: 0;
}

.safe-tariffs__head h2 {
  margin: 0 0 60px;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.safe-tariffs__table {
  display: grid;
  gap: 20px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.safe-tariffs__header {
  display: grid;
  grid-template-columns: 1.45fr 1fr .65fr;
  overflow: hidden;
  border: 2px solid var(--td-blue);
  border-radius: var(--td-radius);
  color: var(--td-white);
  background: var(--td-blue);
}

.safe-tariffs__header > div {
  padding: 18px 22px;
  color: var(--td-white);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.safe-tariffs__group {
  display: grid;
  grid-template-columns: 1.45fr 1.65fr;
  overflow: hidden;
  border: 2px solid var(--td-blue);
  border-radius: var(--td-radius);
  background: var(--td-white);
  box-shadow: none;
}

.safe-tariffs__service {
  display: flex;
  align-items: flex-start;
  padding: 26px 22px;
  color: var(--td-gray);
  background: var(--td-white);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.safe-tariffs__rows {
  display: block;
  padding: 18px 0;
}

.safe-tariffs__row {
  display: grid;
  grid-template-columns: 1fr .65fr;
  min-height: 32px;
  border-top: 0;
}

.safe-tariffs__row > div {
  display: flex;
  align-items: center;
  padding: 4px 22px;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

.safe-tariffs__row > div + div {
  justify-content: flex-start;
  border-left: 0;
  white-space: nowrap;
}

.safe-tariffs__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.safe-tariffs__actions .safe-btn {
  width: 260px;
}

/* ==============================
   БЛОК 6: Документы
   ============================== */

.storage-process {
  padding: 30px 0 30px !important;
  background: var(--td-white) !important;
}

.storage-process__title {
  margin: 0 0 60px;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.storage-process__intro {
  max-width: 860px;
  margin: 0 auto 30px;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  text-align: center;
}

.storage-process__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.storage-process__card {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  min-height: 106px;
  padding: 16px 18px;
  border: 2px solid var(--td-blue);
  border-radius: var(--td-radius);
  background: var(--td-white);
}

.storage-process .storage-process__card .storage-process__num {
  position: static !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
  min-width: 42px !important;
  display: block !important;
  flex: 0 0 auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--td-blue) !important;
  font-family: var(--td-font-title) !important;
  font-size: 36px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.storage-process__text {
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.storage-process__text strong {
  font-weight: 700;
}

.storage-process .storage-process__docs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.storage-process__docs-card {
  padding: 16px 18px;
  border: 2px solid var(--td-blue);
  border-radius: var(--td-radius);
  background: var(--td-blue);
}

.storage-process__docs-title {
  margin: 0 0 12px;
  color: var(--td-white);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

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

.storage-process__docs-list li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
  color: var(--td-white);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

.storage-process__docs-list li:last-child {
  margin-bottom: 0;
}

.storage-process__docs-list li:before {
   content: "";
 
 
    margin-top: 4px;
    font-family: "fontello";
    color: #fcb414;
    font-size: 10px;
  
  position: absolute;
  left: 0;
  top: 0;
  color: var(--td-orange);
  
}

.storage-process__docs-list a {
  min-height: 0 !important;
  display: inline !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--td-white) !important;
  background: transparent !important;
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  text-decoration: none;
}

.storage-process__docs-list a:before {
  display: none !important;
}

.storage-process__docs-list a:hover {
  color: var(--td-white) !important;
  background: transparent !important;
  text-decoration: underline;
}

/* ==============================
   БЛОК 7: Кейсы
   ============================== */
.safe-cases .carousel-type-2 .owl-nav .owl-next {
    margin-top: -75px;
}

.safe-cases .carousel-type-2 .owl-nav .owl-prev {
    margin-top: -75px;
}

.safe-cases {
  padding: 30px 0 30px !important;
  background: var(--td-white);
}

.safe-cases .page-section {
  padding: 0 !important;
  background: transparent;
}

.safe-cases__title,
.safe-cases h2,
.safe-cases .section-title {
  margin: 0 0 60px !important;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.safe-cases img {
  border-radius: var(--td-radius) !important;
}

.safe-cases h3,
.safe-cases h4,
.safe-cases .item-title,
.safe-cases .case-title,
.safe-cases .blog-title,
.safe-cases .portfolio-title {
  margin: 20px 0 16px;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  text-align: left;
}

.safe-cases p,
.safe-cases a {
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.safe-cases a,
.safe-cases .read-more,
.safe-cases .more-link {
  color: var(--td-blue);
  text-decoration: none;
}

.safe-cases a:hover,
.safe-cases .read-more:hover,
.safe-cases .more-link:hover {
  color: var(--td-blue);
  text-decoration: underline;
}

.safe-cases .owl-prev,
.safe-cases .owl-next,
.safe-cases .slick-prev,
.safe-cases .slick-next {
  color: var(--td-blue) !important;
  border-color: var(--td-blue) !important;
  background: transparent !important;
}

.safe-cases .owl-prev:before,
.safe-cases .owl-next:before,
.safe-cases .slick-prev:before,
.safe-cases .slick-next:before,
.safe-cases .owl-prev i,
.safe-cases .owl-next i,
.safe-cases .owl-prev span,
.safe-cases .owl-next span {
  color: var(--td-blue) !important;
}

.safe-cases .owl-prev svg,
.safe-cases .owl-next svg,
.safe-cases .owl-prev path,
.safe-cases .owl-next path {
  fill: var(--td-blue) !important;
  stroke: var(--td-blue) !important;
}

/* ==============================
   БЛОК 8: Преимущества
   ============================== */
.testimonials::before {
    display: none;
}

.questions-block.container {
    padding: 70px 0 140px !important;
    background-color: var(--td-white);
    margin: 0;
    }

.call-out.custom {
    padding: 30px 0;
}

.advantagBlock {
  margin: 0 !important;
  padding: 30px 0 30px !important;
  background: var(--td-white) !important;
}

.advantagBlock .section-title {
  max-width: 980px;
  margin: 0 auto 60px !important;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.advantagBlock .advantFlex {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.advantagBlock .advantItem {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 30px;
  border: 2px solid var(--td-blue);
  border-radius: var(--td-radius);
  background: var(--td-white);
  box-shadow: none;
}

.advantagBlock .advantItem h4 {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.advantagBlock .advantItem h4 i {
  flex: 0 0 auto;
  color: var(--td-blue) !important;
  font-size: 32px;
  line-height: 1;
}

.advantagBlock .advantItem h4 i:before {
  color: var(--td-blue) !important;
}

.advantagBlock .advantItem svg {
  width: 32px;
  height: 32px;
}

.advantagBlock .advantItem svg path {
  fill: var(--td-blue) !important;
  stroke: var(--td-blue) !important;
}

.advantagBlock .advantItem p {
  margin: 0;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.advantagBlock .safe-tariffs__actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.advantagBlock .safe-btn {
  min-width: 260px;
}

/* ==============================
   БЛОК 9: Что включает услуга
   ============================== */
.page-section-bg.safe-service-info .custom-list li span {
    color: var(--td-gray);
}

.safe-service-info {
  padding: 30px 0 30px !important;
  background: var(--td-white) !important;
}

.safe-service-info .section-title {
  margin: 0 0 30px !important;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.safe-service-info p,
.safe-service-info li,
.safe-service-info span {
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.safe-service-info strong,
.safe-service-info b {
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-weight: 700;
}

.safe-service-info h2:not(.section-title),
.safe-service-info h3 {
  margin: 60px 0 30px;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.safe-service-info ul.custom-list.type-2 {
  margin: 20px 0 30px;
  padding: 0;
  list-style: none;
}

.safe-service-info ul.custom-list.type-2 li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
}

.safe-service-info ul.custom-list.type-2 li:before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--td-orange);
  font-weight: 700;
}

.safe-service-info a {
  color: var(--td-white);
  text-underline-offset: 3px;
}

.safe-service-info a:hover {
  color: var(--td-blue);
  text-decoration: none;
}

.safe-service-info .safe-tariffs__actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.safe-service-info .safe-btn {
  min-width: 260px;
}

/* ==============================
   БЛОК 10: Отзывы
   ============================== */

.testimonials {
  padding: 30px 0 30px !important;
  background-color: var(--td-white);
}

.testimonials .section-title {
  margin: 0 0 60px !important;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.testimonials .item,
.testimonials .testimonial,
.testimonials .testimonial-item,
.testimonials .owl-item > div {
  border-radius: var(--td-radius);
}

.testimonials p,
.testimonials span {
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.5;
}

.testimonials .owl-prev,
.testimonials .owl-next {
  color: var(--td-blue) !important;
  border-color: var(--td-blue) !important;
  background: transparent !important;
}

.testimonials .owl-prev:before,
.testimonials .owl-next:before,
.testimonials .owl-prev:after,
.testimonials .owl-next:after {
  color: var(--td-blue) !important;
  border-color: var(--td-blue) !important;
}

/* ==============================
   БЛОК: Полезная информация
   ============================== */

.safe-useful {
  padding: 70px 0 140px !important;
  background: var(--td-white);
}

.safe-useful .page-section,
.safe-useful .page-section-bg {
  padding: 0 !important;
  background: transparent !important;
}

.safe-useful .row {
  display: block !important;
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.safe-useful .row:before,
.safe-useful .row:after {
  content: "";
  display: table;
}

.safe-useful .row:after {
  clear: both;
}

.safe-useful .col-md-12 {
  width: 100% !important;
  float: left !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.safe-useful .col-md-6 {
  width: 50% !important;
  float: left !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.safe-useful .section-title,
.safe-useful h2 {
  margin: 0 0 60px !important;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.safe-useful article,
.safe-useful .item,
.safe-useful .entry,
.safe-useful .blog-item,
.safe-useful .news-item,
.safe-useful .portfolio-item,
.safe-useful .post-item {
  width: 100%;
  margin: 0 !important;
  border-radius: var(--td-radius);
  background: var(--td-white);
}

 
.safe-useful h3,
.safe-useful h4,
.safe-useful .item-title,
.safe-useful .entry-title,
.safe-useful .blog-title,
.safe-useful .news-title {
  margin: 20px 0;
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.safe-useful p,
.safe-useful li {
  color: var(--td-gray);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.5;
}

.safe-useful a {
  color: var(--td-blue);
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  text-decoration: none;
}

.safe-useful a:hover {
  color: var(--td-blue);
  text-decoration: underline;
}

/* ==============================
   ОСТАЛИСЬ ВОПРОСЫ
   ============================== */

.call-out.custom,
.call-out.custom .container,
.call-out.custom .align-center,
.call-out.custom .button-holder,
#order_usl {
  border-radius: var(--td-radius) !important;
}

.call-out.custom form,
.call-out.custom input,
.call-out.custom textarea,
.call-out.custom select,
.call-out.custom button,
.call-out.custom .btn,
.call-out.custom .button,
.call-out.custom .form-control,
.call-out.custom .form-group,
.call-out.custom .input-wrapper,
.call-out.custom .form-holder,
.call-out.custom .custom-select {
  border-radius: var(--td-radius) !important;
}

.call-out.custom h3 {
  
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
}

.call-out.custom p {
 
  font-family: var(--td-font-text);
  font-size: 16px;
  line-height: 1.5;
}

.call-out.custom button,
.call-out.custom input[type="submit"],
.call-out.custom .btn,
.call-out.custom .button {
  border: 1px solid var(--td-blue);
  border-radius: var(--td-radius) !important;
  color: var(--td-white);
  background: var(--td-blue);
  font-family: var(--td-font-text);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  transition: background .2s ease, color .2s ease;
  width: 100%;
}

.call-out.custom button:hover,
.call-out.custom input[type="submit"]:hover,
.call-out.custom .btn:hover,
.call-out.custom .button:hover {
  color: var(--td-blue);
  background: var(--td-white);
}

/* ==============================
   АДАПТИВ
   ============================== */

@media (max-width: 1100px) {
  .safe-hero__inner {
    grid-template-columns: 1fr;
  }

  .safe-hero__media {
    justify-content: center;
  }

  .safe-video-card {
    max-width: 420px;
  }

  .safe-types__grid,
  .safe-solutions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .storage-process__grid,
  .storage-process .storage-process__docs {
    grid-template-columns: 1fr;
  }

  .safe-tariffs__header {
    display: none;
  }

  .safe-tariffs__group {
    display: block;
  }

  .safe-tariffs__service {
    padding: 20px;
    border-bottom: 2px solid var(--td-blue);
  }

  .safe-tariffs__rows {
    padding: 14px 0;
  }

  .safe-tariffs__row {
    grid-template-columns: 1fr auto;
    min-height: auto;
  }

  .safe-tariffs__row > div {
    padding: 6px 20px;
  }

  .safe-tariffs__row > div + div {
    min-width: 90px;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
    
    
    h1.page-title.h2.section-title {
    font-size: 26px;
}

.page-section.pdb0 {
    padding: 10px;
}

 

.advantFlex {
    padding-left: 15px;
    padding-right: 15px;
}


  .safe-hero,
  .safe-types,
  .safe-solutions,
  .safe-map-section,
  .storage-stories,
  .safe-tariffs,
  .storage-process,
  .safe-cases,
  .advantagBlock,
  .safe-service-info,
  .testimonials,
  .safe-useful {
   padding: 30px 0 30px !important;
   }

  .safe-hero__title-main,
  .safe-types h2,
  .safe-solutions h2,
  .safe-map-section .section-title,
  .safe-tariffs__head h2,
  .storage-process__title,
  .safe-cases__title,
  .safe-cases h2,
  .safe-cases .section-title,
  .advantagBlock .section-title,
  .safe-service-info .section-title,
  .testimonials .section-title,
  .safe-useful .section-title,
  .safe-useful h2 {
    margin-bottom: 40px !important;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
  }

  .safe-hero__content,
  .safe-type-card__body,
  .safe-solutions__card,
  .advantagBlock .advantItem {
    padding: 20px;
  }

  .safe-hero__content p,
  .safe-hero__actions .safe-btn,
  .safe-tariffs__actions .safe-btn {
    font-size: 16px;
  }

  .safe-hero__actions,
  .safe-tariffs__actions,
  .advantagBlock .safe-tariffs__actions,
  .safe-service-info .safe-tariffs__actions {
    display: grid;
    gap: 10px;
  }

  .safe-hero__actions .safe-btn,
  .safe-tariffs__actions .safe-btn,
  .advantagBlock .safe-btn,
  .safe-service-info .safe-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }

  .safe-video-card {
    max-width: 100%;
  }

  .safe-video-tabs {
    display: flex;
    overflow-x: auto;
  }

  .safe-video-tab {
    min-width: 112px;
    white-space: nowrap;
  }

  .safe-types__grid,
  .safe-solutions__grid,
  .advantagBlock .advantFlex {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .safe-map-spoiler__title {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    color: var(--td-gray);
    background: transparent;
    font-family: var(--td-font-text);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
  }

  .safe-map-spoiler__title:after {
    content: "+";
    flex: 0 0 auto;
    color: var(--td-blue);
    background: transparent;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
  }

  .safe-map-spoiler.is-open .safe-map-spoiler__title:after {
    content: "−";
  }

  .safe-map-spoiler__body {
    display: none;
    margin-top: 20px;
  }

  .safe-map-spoiler.is-open .safe-map-spoiler__body {
    display: block;
  }

  .storage-stories .col-md-4,
  .storage-stories .h-100 {
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 24px;
  }

  .storage-stories-card,
  .p-card-stories.storage-stories-card {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 18px !important;
  }

  .storage-stories-card .section-title {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 1.25;
  }

  .storage-stories-card__toggle {
    width: 100%;
    min-height: 40px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 14px;
    border: 1px solid rgba(49, 49, 49, .15);
    border-radius: var(--td-radius);
    color: var(--td-gray);
    background: var(--td-white);
    font-family: var(--td-font-text);
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
  }

  .storage-stories-card__toggle:after {
    content: "+";
    flex: 0 0 auto;
    color: var(--td-blue) !important;
    background: transparent !important;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
  }

  .storage-stories-card.is-open .storage-stories-card__toggle:after {
    content: "−";
  }

  .storage-stories-card__description {
    display: none !important;
    margin-top: 20px;
  }

  .storage-stories-card.is-open .storage-stories-card__description {
    display: block !important;
  }

  .safe-tariffs__row {
    grid-template-columns: 1fr;
  }

  .safe-tariffs__row > div {
    padding-bottom: 2px;
  }

  .safe-tariffs__row > div + div {
    min-width: 0;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 10px;
  }

  .storage-process__card {
    gap: 12px !important;
    min-height: 0;
    padding: 14px;
  }

  .storage-process .storage-process__card .storage-process__num {
    min-width: 34px !important;
    font-size: 28px !important;
  }

  .storage-process__text {
    font-size: 14px;
  }

  .storage-process__docs-card {
    padding: 14px;
  }

  .storage-process__docs-title,
  .storage-process__docs-list li,
  .storage-process__docs-list a {
    font-size: 14px;
  }

  .safe-service-info h2:not(.section-title),
  .safe-service-info h3 {
    margin: 40px 0 24px;
    font-size: 24px;
  }

  .safe-useful .col-md-6,
  .safe-useful .col-sm-6,
  .safe-useful .col-xs-12 {
    width: 100% !important;
    float: none !important;
  }

  .safe-useful img {
    height: auto !important;
    aspect-ratio: 545 / 360;
  }
}

/* ==============================
   FAQ новый, без конфликтов
   ============================== */

.td-faq {
  padding: 30px 0 30px;
  background: #FCFCFC;
}

.td-faq * {
  box-sizing: border-box;
}

.td-faq__title {
  margin: 0 0 60px;
  color: #313131;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
}

.td-faq__list {
  max-width: 1180px;
  margin: 0 auto;
}

.td-faq__item {
  margin-bottom: 16px;
  /* border: 2px solid #313131; */
  border-radius: 3px;
  background: #313131;
  overflow: hidden;
}

.td-faq__item:last-child {
  margin-bottom: 0;
}

.td-faq__item--active {
  /* border-color: #313131; */
  background: #FCFCFC;
}

.td-faq__question {
  width: 100%;
  min-height: 54px;
  padding: 16px 58px 16px 20px;
  border: 0;
  position: relative;
  display: block;
  color: #FCFCFC;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.td-faq__item--active .td-faq__question {
  color: #313131;
}

.td-faq__question-text {
  display: block;
}

.td-faq__icon {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border: 2px solid currentColor;
  border-radius: 50%;
  color: inherit;
}

.td-faq__icon:before,
.td-faq__icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.td-faq__icon:before {
  width: 10px;
  height: 2px;
}

.td-faq__icon:after {
  width: 2px;
  height: 10px;
}

.td-faq__item--active .td-faq__icon:after {
  display: none;
}

.td-faq__answer {
  padding: 0 20px 20px;
  color: #313131;
  background: #FCFCFC;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.td-faq__answer[hidden] {
  display: none !important;
}

.td-faq__answer-inner p {
  margin: 0 0 12px;
}

.td-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

.td-faq__answer-inner strong,
.td-faq__answer-inner b {
  color: #313131;
  font-weight: 700;
}

.td-faq__answer-inner ul {
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.td-faq__answer-inner li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 24px;
}

.td-faq__answer-inner li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #FDB414;
  font-weight: 700;
}

@media (max-width: 767px) {
  .td-faq {
    padding: 50px 0 100px;
  }

  .td-faq__title {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 1.2;
  }

  .td-faq__item {
    margin-bottom: 12px;
  }

  .td-faq__question {
    min-height: 50px;
    padding: 14px 48px 14px 16px;
    font-size: 16px;
  }

  .td-faq__icon {
    right: 14px;
    width: 20px;
    height: 20px;
  }

  .td-faq__answer {
    padding: 0 16px 16px;
    font-size: 15px;
  }
}


    /* ==========================================================================
   Калькуляторы ОХ (calc-oh) — надстройка над стилями сайта transportdepot.ru
   Использует базовые классы сайта (.btn, .btn-style-2, .link-dop, .required
   и т.д.), здесь только то, чего в основном CSS нет.
   Префикс .calc-oh — чтобы не конфликтовать со старым #calc.
   ========================================================================== */

/* Внешняя рамка калькулятора — как у #calc на сайте */
.calc-oh {
  
  padding: 25px;
  margin: 30px 0;
  background: #fff;
  font-family: "Roboto", sans-serif;
  color: #4e4e4e;
}
.calc-oh * { box-sizing: border-box; }

/* Заголовок калькулятора */
.calc-oh__title {
  margin: 0 0 60px !important;
  color: var(--td-gray);
  font-family: var(--td-font-title);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

/* Подзаголовок шага */
.calc-oh__subtitle {
  font-family: "Ubuntu", sans-serif;
  color: #313131;
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 15px;
}

/* Шаги */
.calc-oh__step { margin-bottom: 10px; }
.calc-oh__step.is-hidden { display: none; }

/* Кнопки выбора типа паллет — в стиле .calc-tab сайта */
.calc-oh__tabs {
  display: table;
  width: 100%;
  margin-bottom: 25px;
  table-layout: fixed;
}
.calc-oh__tab {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background-color: #313131;
  border: 1px solid #fff;
  height: 64px;
  padding: 10px 15px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .3s ease, color .3s ease;
}
.calc-oh__tab:hover { color: #fff; background-color: #4e4e4e; }
.calc-oh__tab.is-active,
.calc-oh__tab.is-active:hover { background-color: #fcb414; color: #313131; }
.calc-oh__tab small { display: block; font-size: 12px; font-weight: 400; margin-top: 5px; }

/* Строка ввода — в стиле .table-calc сайта */
.calc-oh__row {
  display: table;
  width: 100%;
  padding: 15px 0;
  min-height: 70px;
  border-bottom: 1px solid #fcb414;
}
.calc-oh__row > * { display: table-cell; vertical-align: middle; }
.calc-oh__row-label {
  width: 60%;
  font-size: 16px;
  padding-right: 15px;
  line-height: 1.3;
}
.calc-oh__row-label small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #8c8c8c;
  padding-top: 4px;
  line-height: 1.4;
}
.calc-oh__row-input { text-align: center; }
.calc-oh__row-input input {
  border: 2px solid #dcdcdc !important;
  text-align: center;
  max-width: 220px;
  margin: 0 auto;
}
.calc-oh__row-input input.is-error { border-color: #ea8585 !important; }
.calc-oh__row-input .calc-oh__unit {
  display: inline-block;
  margin-left: 8px;
  color: #838383;
  font-size: 14px;
}

/* Информация о тарифах */
.calc-oh__tariffs {
  background: #f1f1f1;
  border-left: 4px solid #fcb414;
  padding: 18px 22px;
  margin: 25px 0;
  font-size: 15px;
  line-height: 1.55;
}
.calc-oh__tariffs strong {
  display: block;
  font-family: "Ubuntu", sans-serif;
  color: #313131;
  margin-bottom: 6px;
  font-size: 16px;
}
.calc-oh__tariffs ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.calc-oh__tariffs ul:last-child { margin-bottom: 0; }
.calc-oh__tariffs li {
  padding: 2px 0 2px 20px;
  position: relative;
  color: #4e4e4e;
}
.calc-oh__tariffs li:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 5px;
  height: 5px;
  background-color: #fcb414;
  border-radius: 50%;
}
.calc-oh__tariffs li b { color: #004e9c; font-weight: 700; }
.calc-oh__tariffs .calc-oh__note {
  font-size: 13px;
  color: #838383;
  margin: 10px 0 0;
  line-height: 1.5;
}

/* Сообщение об ошибке */
.calc-oh__error {
  margin: 15px 0;
  padding: 10px 15px;
  background: #fde6e6;
  color: #ed4040;
  border-radius: 3px;
  font-size: 14px;
}
.calc-oh__error.is-hidden { display: none; }

/* Кнопки действий */
.calc-oh__actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Блок результата — в стиле #result сайта */
.calc-oh__result {
  margin-top: 25px;
  padding: 20px 25px;
  background-color: #f7f7f7;
}
.calc-oh__result.is-hidden { display: none; }
.calc-oh__result p {
  padding: 14px 0;
  border-bottom: 1px solid #ccc;
  margin: 0;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.calc-oh__result p:last-of-type { border-bottom: none; }
.calc-oh__result p b {
  text-transform: uppercase;
  line-height: 1;
  color: #313131;
  font-weight: 700;
}
.calc-oh__result small {
  display: block;
  font-size: 10px;
  line-height: 1;
  min-height: 16px;
  padding-bottom: 6px;
  text-transform: uppercase;
  color: #8c8c8c;
}

/* Итоговая сумма */
.calc-oh__total {
  padding: 18px 0 5px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  color: #313131;
  border-top: 2px solid #fcb414;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.calc-oh__total-value {
  color: #004e9c;
  text-transform: none;
  font-size: 30px;
  font-weight: 700;
}

/* Детальный расчёт (раскрывается по .link-dop) */
.calc-oh__details {
  margin-top: 15px;
  padding: 18px 22px;
  background: #fff;
  border-left: 3px solid #004e9c;
  font-size: 15px;
  line-height: 1.7;
}
.calc-oh__details.is-hidden { display: none; }
.calc-oh__details p {
  padding: 0;
  margin: 0 0 10px;
  border: none;
  display: block;
}
.calc-oh__details p:last-child { margin-bottom: 0; }
.calc-oh__details .calc-oh__note {
  font-size: 13px;
  color: #838383;
  font-style: italic;
}
.calc-oh__details .calc-oh__formula {
  font-size: 17px;
  font-weight: 300;
  color: #004e9c;
}

/* Ссылка-кнопка "Не знаете количество паллет" — переопределяем
   стандартные margin'ы .link-dop сайта, чтобы хорошо смотрелось внутри шага */
.calc-oh .link-dop.calc-oh__link-dop {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 15px;
}

/* Адаптив */
@media (max-width: 600px) {
  .calc-oh { padding: 20px 15px; }
  .calc-oh__title { font-size: 20px; }
  .calc-oh__tab { font-size: 14px; padding: 8px 10px; }
  .calc-oh__row { display: block; padding: 12px 0; }
  .calc-oh__row > * { display: block; width: 100% !important; }
  .calc-oh__row-label { padding: 0 0 8px; }
  .calc-oh__row-input input { max-width: 100%; }
  .calc-oh__total { font-size: 18px; }
  .calc-oh__total-value { font-size: 24px; }
}
.safe-solutions__card a{
    color: #004e9c;
}

.safe-type-card__body a {
        color: #004e9c;
}
.safe-service-info ul li:before {
 
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-family: "fontello";
    color: #fcb414;
    font-size: 10px;
    content: "";
    }

.safe-service-info ul {
 margin-bottom: 10px;
    }
    h2.td-faq__title {
    margin-bottom: 30px;
}
.form-column-full.calc-oh-form__file input {
    display: block;
}
.safe-solutions__card p {margin-bottom: 10px;}

.safe-service-info ol {
 margin-bottom: 10px;
   padding-left: 20px;
 list-style: auto;
    }