:root {
    --color-primary-dark: #003f87;
    --color-primary-light: #66c2e5;
    --color-primary-medium: #007cc0;
    --color-bg: #f4f8fc;
    --color-bg-alt: #e6f0fa;
    --color-text: #222;
    --color-text-light: #ffefef;
    --color-border: #cfd8e3;
    --color-shadow: rgba(0,0,0,0.15);
}
body, p, label, input, textarea, select {
  font-size: 1.2rem;
  line-height: 1.6;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Segoe UI", sans-serif;
    margin: 0;
}

header {
  gap: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8%;
  background: white;
  z-index: 2000;
  box-shadow: 0 2px 6px var(--color-shadow);
  transition: transform 0.4s ease;
}
header.header-collapsed {
  transform: translateY(calc(100% - 190px));
}
.logo {
    height: 120px;
    background: var(--color-text-light);
    border-radius: 6px;
    flex-shrink: 0;
}

nav {
    display: flex;
    gap: 2.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

nav a {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--color-primary-medium);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}
.steps {
  padding-bottom: 40px;
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.steps h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 3rem;
}

.steps-intro {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  counter-reset: step;
}

.steps-list li {
  position: relative;
  counter-increment: step;

  background: #f6f9fc;
  border-radius: 12px;
  padding: 22px 24px 22px 80px;
  margin-bottom: 18px;

  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  background: linear-gradient(135deg, var(--color-primary-medium), var(--color-primary-light));
  color: #fff;

  font-weight: bold;
  font-size: 18px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.additionally {
  padding-bottom: 40px;
}
.button-additionally{
  margin-top: 40px;
}
/* === СЛАЙДЕР (fade + текст + стрелки + точки) === */
.slider {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  filter: brightness(40%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === ТЕКСТ СЛАЙДА === */
.slide .text {
  color: var(--color-primary-light);
  text-decoration: none;
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 35px;
  border-radius: 10px;
  max-width: 80%;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.show-text .text {
  opacity: 1;
}

/* === СТРЕЛКИ === */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.3s ease, transform 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.slider-arrow:hover {
  background: var(--color-primary-medium);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.left {
  left: 25px;
}

.slider-arrow.right {
  right: 25px;
}

/* === ТОЧКИ (индикаторы) === */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 6;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.slider-dot.active {
  background: white;
  transform: scale(1.2);
}

/* === АДАПТИВ === */
@media (max-width: 900px) {
  .slider { height: 600px; }
  .slide .text {
    font-size: 1.4rem;
    padding: 14px 25px;
  }
}

@media (max-width: 600px) {
  .slider { height: 400px; }
  .slide .text {
    font-size: 1.1rem;
    padding: 10px 18px;
  }
}
.text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
}

@keyframes slide {
    0%, 20% {transform: translateX(0);}
    25%, 45% {transform: translateX(-100%);}
    50%, 70% {transform: translateX(-200%);}
    75%, 100% {transform: translateX(0);}
}


section.alt-bg {
    padding-top: 5px;
    background: var(--color-bg-alt);
}

section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary-dark);

}
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg);
  padding-bottom: 40px;
}

.about h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 2rem;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
}

.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-image img {
  width: 100%;
  max-width: 520px;
}

.about-text {
  flex: 1 1 50%;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  text-align: justify;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.about-text li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary-dark);
  font-weight: bold;
}
.works {
  padding-bottom: 40px;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--color-text-light);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem;
    width: calc(33.333% - 2rem);
    max-width: 320px;
    box-shadow: 0 2px 6px var(--color-shadow);
    text-align: center;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.card:hover {
    box-shadow: 0 6px 16px rgba(29, 42, 112, 0.658);
}
.services {
  padding-bottom: 40px;
}
.services h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary-light);
}
hr {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.2);
    width: 70%;
    margin: 20px auto;
}

.contact {
    padding: 80px 10%;
    text-align: center;
    background: var(--color-bg);
}

form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-contact {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
input, textarea {
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
}

button {
    background: var(--color-primary-dark);
    color: var(--color-text-light);
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.2rem;
}
button:hover {
    background: var(--color-primary-medium);
}

.more {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    margin-bottom: 20px;
}
.more:hover{
  color: var(--color-primary-medium);
}
.order-div {
    display: flex;
    align-items: row;
    justify-content: space-between;
}

/* === МОДАЛЬНОЕ ОКНО (для карточек услуг и проектов) === */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: rgba(30, 58, 95, 0.6); /* затемнение */
    z-index: 1000;
}
body.modal-open {
  overflow: hidden;
}
body.form-open {
  overflow: hidden;
}

.modal-list {
  padding-left: 18px;
  margin-top: 10px;
}

.modal-list li {
  margin-bottom: 6px;
  line-height: 1.4;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    max-width: 650px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    animation: zoomIn 0.4s ease forwards;
    margin-top: calc(var(--header-height, 70px) + 10px);
    max-height: calc(100vh - var(--header-height, 70px) - 20px);
    overflow-y: auto;
}

.modal-content h2 {
  color: var(--color-primary-dark);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    margin: 1rem 0;
}

.modal-content p {
    color: var(--color-text);
    margin-bottom: 1rem;
    text-align: justify;
}

.close-button {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--color-primary-dark);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.close-button:hover {
    color: var(--color-primary-medium);
    background: none;
    transform: scale(1.2);
}

/* === ПЛАВНЫЙ СКРОЛЛ === */
html {
  scroll-behavior: smooth;
}

.form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
  z-index: 1000;
}

.form-overlay.show {
  opacity: 1;
  visibility: visible;
}

.form-panel {
  margin-top: var(--header-offset)/2;
  margin-bottom: 20px;
  max-height: calc(100vh - var(--header-offset, 80px) - 20px);
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 420px;
  max-width: 420px;
  transform: translateX(100vw);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-overlay.show .form-panel {
  transform: translateX(0);
}


.form-panel h2 {
  color: var(--color-primary-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-form label {
  font-weight: 500;
  color: var(--color-text);
}

.order-form input,
.order-form textarea,
.order-form select {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
}



#captcha-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* Анимация появления */
@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-dark);
  color: #e6f0ff;
  padding: 32px 16px 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 45%;
  min-width: 260px;
}
.footer-contacts {
  flex: 1 1 540px;
}

.footer-title {
  color: #fff;
  margin-bottom: 12px;
  font-size: 20px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-row.single { border-bottom: none; padding-top: 14px; padding-bottom: 8px; }
.icon-wrap {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  color: #aeddff;
}
.contact-main { flex: 1; min-width: 160px; }
.contact-label { font-size: 13px; color: rgba(255,255,255,0.75); }
.contact-value { font-size: 15px; font-weight: 600; margin-top: 2px; }
.contact-value a { color: inherit; text-decoration: none; }
.contact-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.action {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: #fff;
  text-decoration: none;
  transition: background .16s, transform .08s;
}
.action:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.footer-info {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  min-width: 180px;
}
.logo-small {
  width: 120px;
  height: 40px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: 6px;
}
.footer-contacts .contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.85;
}
.contact-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
}
.icon.telegram {
  cursor: pointer;
  background: #229ED9;
}
.icon.telegram:hover {
  transform: scale(1.25);
}
.icon.whatsapp:hover {
  transform: scale(1.25);
}
.icon.phone:hover {
  transform: scale(1.25);
}
.icon.whatsapp {
  cursor: pointer;
  background: #25D366;
}
.icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.contact-main {
  flex: 1;
}
.contact-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.contact-value a {
  color: #fff;
  text-decoration: none;
}
copyright { font-size: 13px; color: rgba(255,255,255,0.6); }
#year { font-weight: 600; color: #dbefff; }
/* === Официальные дилеры (секция steps) === */
.dealers-title {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
}

/* --- Затемнение по краям ленты --- */
.dealers-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 16rem;
}

/* затемняем края с помощью псевдоэлементов */
.dealers-marquee::before,
.dealers-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10%; /* ширина затемнения по краям */
  height: 100%;
  z-index: 2;
  pointer-events: none; /* не мешает кликам */
}

.dealers-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(245, 247, 250, 1), rgba(245, 247, 250, 0));
}

.dealers-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(245, 247, 250, 1), rgba(245, 247, 250, 0));
}



.dealers-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scroll-logos 80s linear infinite;
}

/* карточка */
.dealer-item {
  flex: 0 0 auto;
  width: 27rem;
  height: 14rem;
  border: 0.1rem solid #0052a180;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.dealer-item img {
  width: 80%;
  height: auto;
  object-fit: contain;
}
.no-hover:hover {
    background: inherit !important;
    color: inherit !important;
    /* или просто ничего не писать, если наследование корректное */
}

/* ==== БУРГЕР SVG ===== */
.burger {
    position: absolute;
    left: 20px;
    top: 35px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 3000;
    display: none; /* по умолчанию скрыт */
}
.burger :hover{
  background: none;
}
.burger svg .line {
    stroke: var(--color-primary-dark);
    transition: 0.35s ease;
}

/* Цвет меняется при активном состоянии */
.burger.active svg .line {
    stroke: var(--color-primary-light);
}

/* Показываем бургер на мобильных */
@media (max-width: 900px) {
    .burger {
        display: block;
    }
    .desktop-menu {
        display: none;
    }
}

@media (max-width: 900px) {
    header nav {
        position: absolute;
        top: 120px;
        left: 0;
        right: 0;
        background: white;
        padding: 15px 0;
        display: none;
        justify-content: center;
        gap: 1.2rem;
        border-bottom: 1px solid #ddd;
        flex-wrap: nowrap; /* горизонтально */
        overflow-x: auto;  /* скролл по горизонтали, если не влезает */
    }

    header nav a {
        white-space: nowrap;
        font-size: 1rem;
    }
}

/* === КОМПАКТНОЕ ЛЕВОЕ МЕНЮ === */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 14px;

    position: absolute;
    top: 90px;
    left: 20px; /* прижимаем к левому краю */

    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);

    width: auto;       /* ширина = по содержимому */
    max-width: 75%;    /* запас, если вдруг длинный текст */
    z-index: 2000;
}

.mobile-menu a {
    text-align: left;
    white-space: nowrap;   /* кнопки — в одну строку */
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--color-primary-dark);
}

.mobile-menu.open {
    display: flex;
}


@media (min-width: 901px) {
    .mobile-menu { display: none !important; }
}

/* Прячем обычное меню */
@media (max-width: 900px) {
  header {
    justify-content: center;
  }

  nav.mobile-hidden {
    display: none;
  }

  .logo {
    margin: auto;
  }
}
@media (max-width: 900px) {
  .slider-arrow { display: none; }
}
@media (max-width: 900px) {
  section, .about, .services, .works, .contact {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 900px) {
  .dealer-item {
    width: 14rem;
    height: 7rem;
    border-radius: 0.6rem;
  }

  .dealer-item img {
    width: 70%;
  }

  .dealers-marquee {
    height: 10rem;
  }

  .dealers-track {
    gap: 2rem;
  }
}
@media (max-width: 900px) {
  .slide .text {
    bottom: 30% !important;
  }
}

@media (max-width: 600px) {
  .slide .text {
    bottom: 20% !important;
  }
}

/* ключевая анимация */
@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* адаптив */
@media (max-width: 780px) {
  .footer-inner { flex-direction: column; align-items: stretch; }
  .footer-info { align-items: flex-start; margin-top: 12px; }
  .contact-actions { gap: 6px; }
}

/* === АДАПТИВ === */
@media (max-width: 900px) {
  header nav {
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: center;
  }

  .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    margin-bottom: 1.5rem;
  }

  .about-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-image {
    display: flex;
    justify-content: center !important;
    width: 100%;
  }

  .about-image img {
    margin: 0 auto;
  }

  form {
    width: 90%;
    margin: auto;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 1.4rem;
  }

  .order-button,
  button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .form-panel {
    width: 95%;
    padding: 1.2rem;
  }
}
/* === FOOTER — ДВЕ КОЛОНКИ НА ПК === */
@media (min-width: 900px) {
  .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
  }

  .footer-contacts {
    width: 50%;
  }

  /* Контейнер почты+адреса отдельно */
  .footer-right-block {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 34px; /* как у телефонов */
  }

  /* Поместить две строки почты и адреса в эту колонку */
  .footer-right-block .contact-row {
    margin-bottom: 15px;
  }

  /* Убираем огромный отступ снизу */
  .site-footer {
    padding-bottom: 20px;
  }
}

/* Строка © — по центру под обеими колонками */
.footer-info {
  margin-top: 20px !important;
  text-align: center;
}
/* Мобильные ссылки — как ПК */
.mobile-menu a {
  font-family: var(--font-base);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  text-decoration: none;
  padding: 12px 0;
}
.mobile-menu a:hover {
  color: var(--color-primary-medium);
}
@media (max-width: 800px) {
  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    margin-top: 18px;
  }
}

@media (max-width: 900px) {
  .site-footer {
    width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* уменьшить расстояние между адресом и © */
  .footer-info {
    margin-top: 10px !important;
  }
}
.card .more {
  display: block;
  text-align: center;
  width: 100%;
}
@media (max-width: 900px) {
  .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card img {
    order: 1;
  }

  .card h4, 
  .card p {
    order: 2;
  }

  .card .more {
    order: 3;
  }

  .card .order-div {
    order: 4;
    width: 100%;
  }
}
