/* ============== GLOBAL ============== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
  color: #111;
}

/*NUMBER*/
.phone-floating {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 9999;

    padding: 14px 22px;
    background: linear-gradient(135deg, #f9e8b8, #d1a150);
    color: #000;

    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;

    display: flex;
    align-items: center;
    gap: 10px;

    box-shadow: 0 8px 35px rgba(0,0,0,0.35);

    transition: transform .25s ease, box-shadow .25s ease;

    overflow: hidden;
}

.phone-floating svg {
    width: 22px;
    height: 22px;
}

.phone-floating:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 45px rgba(0,0,0,0.45);
}

.phone-floating::before {
    content: "";
    position: absolute;
    left: -70%;
    top: -40%;
    width: 40%;
    height: 160%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.7),
        rgba(255,255,255,0.05)
    );
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: transform .8s ease, opacity .8s ease;
}

.phone-floating:hover::before {
    left: 120%;
    opacity: 1;
    transition: left .8s cubic-bezier(.2,.8,.2,1), opacity .6s ease;
}




/* ====================================================== */
/* ===================== HERO ============================ */
/* ====================================================== */

.hero {
  position: relative;
  height: 100vh;
  background-image: url("../images/default/full_image_4.png"); /* fallback картинка */
  background-color: #d7c483;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@supports (background-image: url("../images/webp/full_image_4.webp")) {
  .hero {
    background-image: url("../images/webp/full_image_4.webp");
  }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;

}

.hero-content {
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.25);
    padding: 28px 32px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}


.hero-title {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0,0,0,.7);
}

.hero-subtitle {
  font-size: 22px;
  margin: 25px 0 40px;
  opacity: 0.92;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
  text-align: center;
}

.hero-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /*расстояние между галочкой и текстом*/
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeInUp 0.6s ease forwards;
}

.hero-list li:nth-child(1) { animation-delay: 0.15s; }

.hero-list li:nth-child(2) { animation-delay: 0.30s; }

.hero-list li:nth-child(3) { animation-delay: 0.45s; }

.hero-list li:nth-child(4) { animation-delay: 0.60s; }

.check-icon {
  width: 20px;
  height: 20px;
  stroke: #27dca3;
  flex-shrink: 0;
}

/* ===== Анимации для текста HERO ===== */

@keyframes checkmarkPop {
  0% {
    opacity: 0;
    transform: scale(0.3);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: scale(1.25);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================================================== */
/* ===================== BUTTONS ======================== */
/* ====================================================== */

.btn-primary {
    position: relative;
    display: inline-block;
    padding: 18px 42px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #e3c27a 0%, #cfa75a 40%, #b88a37 100%);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 3px rgba(255,255,255,0.4);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    z-index: 1;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.75s;
    opacity:0;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: -12px -24px;
    z-index: -1;
    filter: blur(18px);
    background: radial-gradient(
        60% 40% at 50% 50%,
        rgba(209,161,80,0.14),
        transparent 60%
    );
    opacity: 0.9;
    transition: opacity .3s ease;
    border-radius: 16px;
}

.btn-primary::before {
    content: "";
    position: absolute;
    left: -70%;
    top: -40%;
    width: 40%;
    height: 160%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.05)
    );
    transform: skewX(-20deg);
    transition: transform .8s ease, opacity .8s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.btn-primary:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 60px rgba(209,161,80,0.4),
        inset 0 4px 12px rgba(255,255,255,0.3);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover::before {
    left: 120%;
    opacity: 1;
    transition: left .8s cubic-bezier(.2,.8,.2,1), opacity .6s ease;
}





/* ====================================================== */
/* ===================== Почему нам доверяют? ======================== */
/* ====================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid #e6e1d1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 1.2s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,226,130,0.15),
    rgba(191,142,45,0.15)
  );
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #d3b258;
  box-shadow:
    0 8px 25px rgba(0,0,0,0.15),
    0 0 25px rgba(217,172,80,0.35);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card * {
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #b99739;
  font-size: 22px;
}

/* =============================================== */
/* ================= ABOUT SECTION =============== */
/* =============================================== */

.about {
    padding: 90px 0;
    background: radial-gradient(circle at top right, rgba(231,194,127,0.12), transparent 60%);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border-left: 4px solid #e7c27f;
    padding-left: 30px;
}

.about-image{
    background-image: url("../images/default/img2.png");
    aspect-ratio: 4/5;
    border-radius: 16px;
    background-image: url("../images/default/img2.webp");
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(209,161,80,0.6);
}
@supports (background-image: url("../images/webp/img2.webp")) {
  .about-image {
    background-image: url("../images/webp/img2.webp");
  }
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(209,161,80,0.6);
}

.about-content .section-title {
    margin-bottom: 25px;
}

.about-lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.55;
}

.about-block {
    margin-bottom: 28px;
    position: relative;
    padding-left: 32px;
}

.about-block:before{
    content: "";
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #f2d9a1, #e7c27f);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

.about-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-block p {
    font-size: 16px;
    opacity: 0.88;
    line-height: 1.6;
}


/* ====================================================== */
/* ===================== SERVICES ======================== */
/* ====================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.service-card {
  padding: 30px 20px;
  background: #fff;
  color: #333;
  border: 1px solid #e6e1d1;
  border-radius: 12px;
  font-size: 19px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* ====================================================== */
/* ===================== PROCESS ========================= */
/* ====================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 40px;
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #caa748;
  color: #fff;
  font-size: 24px;
  line-height: 55px;
  margin-bottom: 12px;
}


/* ====================================================== */
/* ====================== FAQ ============================ */
/* ====================================================== */

#faq {
    position: relative;
    padding: 90px 0;
    border-top: 1px solid rgba(209,161,80,0.35);
    padding-top: 100px;
    background: linear-gradient(to bottom, rgba(231,194,127,0.08), transparent 60%);
}

#faq::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    filter: brightness(1.15);
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#faq > * {
    position: relative;
    z-index: 2;
}

/* =============================================== */
/* ============ CONTACT PANEL (DESKTOP) ========== */
/* =============================================== */

.contact-panel {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.cp-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.75);
    border: 2px solid rgba(212,175,55,0.6);
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.25s;
}

.cp-btn:hover {
    background-color: #fff;
    transform: scale(1.08);
}

/* Иконки */
.cp-btn.telegram {
    background-image: url("https://cdn-icons-png.flaticon.com/512/2111/2111646.png");
}

.cp-btn.email {
    background-image: url("https://cdn-icons-png.flaticon.com/512/561/561188.png");
}

.cp-btn.phone {
    background-image: url("https://cdn-icons-png.flaticon.com/512/9946/9946341.png");
}

.cp-btn.whatsapp{
    background-image: url("https://cdn-icons-png.flaticon.com/512/733/733585.png");
}


/* ====================================================== */
/* ===================== CTA & FOOTER ==================== */
/* ====================================================== */

:root {
  --gold-1: #f9e8b8;
  --gold-2: #e7c27f;
  --gold-3: #d1a150;
  --bg-dark: #070707;
  --bg-dark-2: #0a0a0a;
}

/* CTA секция с текстурой */
.premium-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-color: var(--bg-dark);
  background-image: url("https://images.freecreatives.com/wp-content/uploads/2015/08/Metal_wire_mash_seamless.jpg");
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(209,161,80,0.25);
  border-bottom: 1px solid rgba(209,161,80,0.25);
  color: #fff;
  isolation: isolate;
}

/* Grain / noise поверх текстуры */
.premium-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20% 20%, rgba(255,255,255,0.02), transparent 10%),
    radial-gradient(1px 1px at 80% 80%, rgba(255,255,255,0.02), transparent 15%);
  mix-blend-mode: overlay;
  opacity: 0.45;
  z-index: 0;
}

/* Золотистое свечение по краям */
.premium-cta::after {
  content: "";
  position: absolute;
  inset: -10px -20px -10px -20px;
  pointer-events: none;
  background: radial-gradient(600px 200px at 50% 0%, rgba(231,194,127,0.08), transparent 30%),
              radial-gradient(400px 120px at 50% 100%, rgba(209,161,80,0.04), transparent 30%);
  z-index: 0;
}

/* Контейнер над слоёв */
.premium-cta .container {
  position: relative;
  z-index: 2;
}

/* Заголовок */
.premium-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

/* Подчёркивающая линия под заголовком */
.premium-cta .container::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  margin: 24px auto 30px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-3));
  box-shadow: 0 8px 30px rgba(209,161,80,0.18);
  z-index: 2;
}

/* Увеличенная и усиленная кнопка */
.premium-cta .btn-primary {
  display: inline-block;
  padding: 20px 48px;
  font-size: 20px;
  border-radius: 14px;
  font-weight: 700;
  color: fff;
  background: linear-gradient(135deg, #e3c27a 0%, #cfa75a 40%, #b88a37 100%);
  box-shadow:
    0 8px 40px rgba(209,161,80,0.25),
    inset 0 2px 8px rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Halo под кнопкой */
.premium-cta .btn-primary::after {
  content: "";
  position: absolute;
  inset: -12px -24px;
  z-index: -1;
  filter: blur(18px);
  background: radial-gradient(60% 40% at 50% 50%, rgba(209,161,80,0.14), transparent 60%);
  opacity: 0.9;
  transition: opacity .3s ease;
  border-radius: 16px;
}

/* Световой штрих (sheen) на кнопке */
.premium-cta .btn-primary::before {
  content: "";
  position: absolute;
  left: -70%;
  top: -40%;
  width: 40%;
  height: 160%;
  background: linear-gradient(120deg, rgba(255,255,255,0.05), rgba(255,255,255,0.6), rgba(255,255,255,0.05));
  transform: skewX(-20deg);
  transition: transform .8s ease, opacity .8s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.premium-cta .btn-primary:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 60px rgba(209,161,80,0.4),
    inset 0 4px 12px rgba(255,255,255,0.3);
}

.premium-cta .btn-primary:hover::after {
  opacity: 1;
}

.premium-cta .btn-primary:hover::before {
  left: 120%;
  opacity: 1;
  transition: left .8s cubic-bezier(.2,.8,.2,1), opacity .6s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .premium-cta {
    padding: 70px 0;
  }
  .premium-cta h2 {
    font-size: 28px;
  }
  .premium-cta .btn-primary {
    padding: 16px 36px;
    font-size: 18px;
  }
}

/* ================== Footer premium improvements ==================

.footer-premium {
  background: linear-gradient(180deg, #060606, #0b0b0b);
  padding: 30px 0;
  border-top: 1px solid rgba(209,161,80,0.06);
  position: relative;
  z-index: 1;
}

*//* small gold line above footer (centered short bar) *//*
.footer-premium::before {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-3));
  box-shadow: 0 6px 24px rgba(209,161,80,0.12);
}

*//* footer text *//*
.footer-premium p {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  margin: 0;
}*/



/* ====================================================== */
/* ===================== POPUP OVERLAY ==================== */
/* ====================================================== */

#popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    z-index: 9998;
}

#popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

#popup-window {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0.85);
    opacity: 0;
    visibility: hidden;

    width: 90%;
    max-width: 380px;
    padding: 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);

    transition: all 0.45s ease;
    z-index: 9999;
}

#popup-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

/* close button */
#popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* form fields */
#popup-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 18px;
}


#popup-form input {
    width: 100%;
    max-width: 346px;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 220, 160, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 16px;
    display: block;
}

#popup-form input::placeholder {
    color: #d6d6d6;
}

/* submit button */
.popup-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 18px;
  font-weight: 700;

  background: linear-gradient(135deg, #f8d27a, #c7982e);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1px 2px rgba(255,255,255,0.4);

  transition: all .25s ease;
}

.popup-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px gold;
}

/* ===== POPUP TEXT ===== */

.popup-title {
  font-size: 26px;
  margin-bottom: 12px;
  color: #fff;
}

.popup-subtitle {
  font-size: 16px;
  margin-bottom: 25px;
  color: #e3e3e3;
}

/* Close button */
#popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* ====================================================== */
/* ===================== SUCCESS POPUP WINDOW =================== */
/* ====================================================== */

#success-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;

    visibility: hidden;
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 99999;
}

#success-popup.active {
    visibility: visible;
    opacity: 1;
}

/* Контейнер */
.success-content {
    width: 90%;
    max-width: 360px;

    background: #ffffff;
    border-radius: 18px;
    padding: 40px 30px 35px;
    text-align: center;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.20),
        0 0 25px rgba(212,175,55,0.25);

    animation: successScale .45s ease forwards;
    transform: scale(0.75);
    opacity: 0;
}

@keyframes successScale {
    0% {
        opacity: 0;
        transform: scale(0.75) translateY(20px);
        filter: blur(4px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Иконка галочки */
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;

    margin: 0 auto 18px;

    background: linear-gradient(135deg, #f9e27d, #caa748);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.25),
        inset 0 2px 4px rgba(255,255,255,0.4);

    display: flex;
    justify-content: center;
    align-items: center;

    animation: checkPop .5s ease .25s both;
}

@keyframes checkPop {
    0% { transform: scale(0.3); opacity: 0; }
    60% { transform: scale(1.25); opacity: 1; }
    100% { transform: scale(1); }
}

/* SVG внутри */
.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-linejoin: round;

    animation: drawCheck .5s ease .35s forwards;
    opacity: 0;
}

@keyframes drawCheck {
    from { stroke-dasharray: 90; stroke-dashoffset: 90; opacity: 1; }
    to   { stroke-dasharray: 90; stroke-dashoffset: 0; opacity: 1; }
}

/* Заголовок */
.success-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}

/* Текст */
.success-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

/* Кнопка */
#success-close {
    margin-top: 10px;

    width: 100%;
    padding: 14px 0;

    border: none;
    border-radius: 12px;
    cursor: pointer;

    font-size: 17px;
    font-weight: 600;

    color: #000;
    background: linear-gradient(135deg, #f9e27d, #caa748);

    box-shadow:
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 2px 3px rgba(255,255,255,0.5);

    transition: all .25s ease;
}

#success-close:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #f8d87f, #b99329);
    box-shadow: 0 6px 25px rgba(0,0,0,0.28);
}

/*BLOCK SCROLL*/
body.no-scroll {
    overflow: hidden;
}

/*ACCORDION*/

/* ACCORDION BASE */
.accordion-item {
    border-bottom: 1px solid rgba(209,161,80,0.35);
    padding: 14px 0;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 6px 0;
    color: #1d1d1d;
}

.accordion-header:hover {
    color: #d1a150;
}

.acc-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #d1a150;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
}

.accordion-body.open {
    opacity: 1;
    padding-top: 10px;
}

/* Icon rotation for open block */
.accordion-header.active .acc-icon {
    transform: rotate(45deg);
}

/*DESCTOP & MOBILE*/

/* Mobile only */
.mobile-only {
    display: none;
}