@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400..800&family=Space+Grotesk:wght@400;600;700&display=swap');

:root {
  --light-color: #fdf7f2;
  --dark-color: #231f20;
  --primary-color: #7c3aed;
  --accent-color: #06b6d4;
  --warning-color: #ef4444;
  --surface-color: #ffffff;
  --muted-color: #efe7ff;
}

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

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

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  background: var(--light-color);
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}

/* header */

.hd-top-st {
  background: var(--surface-color);
  padding: clamp(15px, 3vw, 5px) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.08);
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.plot-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 50px);
  animation: elegantReveal 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.elite-brand-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.elite-brand-portal:hover {
  transform: translateY(-3px);
  filter: brightness(1.2) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.15));
}

.symbol-graphic {
  height: clamp(45px, 6vw, 55px);
  width: auto;
  transition: transform 0.5s ease;
}

.elite-brand-portal:hover .symbol-graphic {
  transform: rotate(10deg) scale(1.1);
}

.brand-title {
  color: #f3f4f6;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.5s ease;
}

.elite-brand-portal:hover .brand-title {
  color: #d4af37;
}

.toggle-interface {
  display: none;
}

@media screen and (max-width: 1200px) {
  .toggle-interface {
    display: flex;
    align-items: center;
  }
}

.core-navigation-hub .navigation-elements {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .core-navigation-hub .navigation-elements {
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 40px);
  }
}

.link-node {
  position: relative;
  overflow: hidden;
}

.portal-anchor {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 19px);
  padding: 8px 12px;
  border-radius: 10px;
  position: relative;
  background: transparent;
  transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.portal-anchor:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.25);
  transform: translateY(-2px);
}






.burger {
  width: 35px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.burger::before,
.burger::after,
.burger span {
  width: 100%;
  height: 5px;
  background: #000;
  border-radius: 3px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger::before {
  content: "";
}

.burger::after {
  content: "";
}

.burger.is-open::before {
  transform: translateY(11.5px) rotate(135deg);
}

.burger.is-open::after {
  transform: translateY(-11.5px) rotate(-135deg);
}

.burger.is-open span {
  transform: scale(0);
  opacity: 0;
}

@media screen and (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.mob-desk-mob {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--surface-color);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.08);
  overflow: hidden;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0.6s ease;
  z-index: 98;
}

.mob-desk-mob.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.portable-nav-collection {
  list-style: none;
  margin: 0;
  padding: clamp(25px, 6vw, 35px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.portable-link-unit {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
  color:#000;
}
.portable-link-unit a{
  color:#000;
}

.mob-desk-mob.is-open .portable-link-unit {
  opacity: 1;
  transform: scale(1);
}

.mob-desk-mob.is-open .portable-link-unit:nth-child(1) {
  transition-delay: 0.15s;
}

.mob-desk-mob.is-open .portable-link-unit:nth-child(2) {
  transition-delay: 0.25s;
}

.mob-desk-mob.is-open .portable-link-unit:nth-child(3) {
  transition-delay: 0.35s;
}

.mob-desk-mob.is-open .portable-link-unit:nth-child(4) {
  transition-delay: 0.45s;
}

.mobile-nav-connection {
  color: var(--dark-color);
  text-decoration: none;
  font-size: clamp(22px, 4.5vw, 26px);
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.mobile-nav-connection:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.25);
}

@keyframes elegantReveal {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .plot-nav {
    gap: 15px;
  }
  .symbol-graphic {
    height: 45px;
  }
  .brand-title {
    font-size: 20px;
  }
  .mobile-nav-connection {
    font-size: 22px;
  }
}

/* --------------------hero---------------------- */

.start_section {
  padding: clamp(70px, 10vh, 100px) 0;
  background: var(--light-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 140px;
}

.start_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
}

.vcup {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  justify-content: center;

}
.start_section{
  z-index: 1;
  background-image: linear-gradient(135deg, rgba(124, 58, 237, 0.8), rgba(6, 182, 212, 0.8)), url(../img/h1.webp);
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 992px) {
  .vcup {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: clamp(30px, 6vw, 60px);
      justify-content: center;
  }
}

.dynamic-text-container {
  max-width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  animation: smoothAscent 1s ease-out forwards;
}

/* @media screen and (min-width: 992px) {
  .dynamic-text-container {
    max-width: 45%;
    text-align: left;
  }
} */

.majestic-headline {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  color: #f5f5f5;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.majestic-headline::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f5f5f5;
  transition: width 0.4s ease, background 0.4s ease;
}


.majestic-headline:hover::after {
  width: 100px;
  background: #f5f5f5;
}

.articulate-statement {
  font-size: clamp(16px, 2vw, 18px);
  color: #000;
  line-height: 1.6;
  margin-bottom: 0px;
  font-weight: 400;
  transition: color 0.3s ease;
}


.vibrant-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 30px);
  background: #f5f5f5;
  color: #1a2a44;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 200px;
}

.vibrant-action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.vibrant-action-btn:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.vibrant-action-btn:hover::before {
  left: 100%;
}

.vcupvv {
  max-width: 100%;
  opacity: 0;
  transform: scale(0.95);
  animation: gentleZoom 1.2s ease-out 0.2s forwards;
}

@media screen and (min-width: 992px) {
  .vcupvv {
    max-width: 50%;
  }
}

.radiant-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.radiant-image:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}

@keyframes smoothAscent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentleZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .majestic-headline {
    font-size: clamp(24px, 6vw, 32px);
  }
  .articulate-statement {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .vibrant-action-btn {
    padding: 10px 20px;
    font-size: 14px;
    max-width: 160px;
  }
  .majestic-headline::after {
    width: 50px;
  }
  .majestic-headline:hover::after {
    width: 80px;
  }
}

/* ----------------------stats-section---------------------------- */

.sectionpand {
  padding: clamp(50px, 12vh, 120px) 0;
  background: var(--light-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: 
    linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(6, 182, 212, 0.85)), 
    url("../img/stats.webp");
  background-size: cover;
  background-position: center;
}

.sectionpand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0.4;
  z-index: -1;
}

.noble-metrics-display {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(220px, 28vw, 280px), 1fr)
  );
  gap: clamp(25px, 4vw, 35px);
  justify-items: center;
  padding: clamp(30px, 5vw, 50px) 0;
}
.ndst{
 display: grid;
  grid-template-columns: repeat(2, minmax(clamp(220px, 28vw, 280px), 1fr));
  gap: clamp(20px, 3.5vw, 30px);
}
.ndst > .big {
  grid-column: 1 / -1; 
}
.ndst .metric-unit{
  background: transparent;
  max-width: 100%;
}
.metric-unit:hover{
  
  color:#000!important;
}



.metric-unit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(25px, 4vw, 35px);
  text-align: center;
  transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: scale(0.9) rotate(-2deg);
  animation: metricPop 1.1s ease-out forwards;
  position: relative;
  width: 100%;
  max-width: 320px;
  backdrop-filter: blur(10px);
    transform: scale(1.05) rotate(0deg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(22, 49, 79, 0.3);
}

.metric-unit:nth-child(1) {
  animation-delay: 0.1s;
}

.metric-unit:nth-child(2) {
  animation-delay: 0.3s;
}

.metric-unit:nth-child(3) {
  animation-delay: 0.5s;
}

.metric-unit:nth-child(4) {
  animation-delay: 0.7s;
}



.metric-unit:hover {
  transform: scale(1.05) rotate(0deg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(22, 49, 79, 0.3);
}

.metric-unit:hover::after {
  left: 100%;
}

.metric-value {
  font-size: clamp(40px, 6.5vw, 52px);
  font-weight: 900;
  color: #000;
  margin: 0 0 15px 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.metric-unit:hover .metric-value::before {
  width: 70px;
}

.metric-caption {
  font-size: clamp(15px, 2.2vw, 17px);
  color: #000;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.ndst .metric-unit:hover .metric-caption {
  color: #000;
}
.sgt{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sgt .metric-unit{
  width: 283px;
  height: 283px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  background: transparent;
  justify-content: center;
  color: #000;
  border: 1px solid #000;
}
.sgt .metric-value{
  color:#fff;
}
.sgt .metric-caption{
  color:#fff;
}

@keyframes metricPop {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .noble-metrics-display {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .metric-unit {
    max-width: 100%;
    padding: 20px;
  }
  .metric-value {
    font-size: clamp(32px, 5.5vw, 40px);
  }
  .metric-caption {
    font-size: clamp(14px, 2vw, 16px);
  }
}

/* ----------------------stats-section---------------------------- */

/* ----------------------refined-info-section---------------------------- */

.sivvopst {
  padding: clamp(60px, 10vh, 110px) 0;
  background: linear-gradient(180deg, #faf5ff 0%, #e0fbff 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sivvopst::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
}

.illustrious-content-frame {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: perspective(800px) rotateX(10deg);
  animation: frameReveal 1.4s ease-out forwards;
}

.dtol {
  font-size: clamp(32px, 4.8vw, 46px);
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 25px;
  line-height: 1.25;
  position: relative;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.dtol::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #000, #000);
  transition: width 0.5s ease, background 0.5s ease;
}

.dtol:hover::after {
  width: 120px;
  background: linear-gradient(to right, #000, #000);
}

.refined-narrative-block {
  max-width: 850px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: narrativeSlide 1.5s ease-out 0.2s forwards;
}

.polished-text {
  font-size: clamp(17px, 2.3vw, 19px);
  color: #d1d5db;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.4px;
  transition: color 0.4s ease;
}

.polished-text:hover {
  color: #f5f5f5;
}

.accentuated-brand {
  font-weight: 700;
  color: #f5f5f5;
  position: relative;
  padding: 0 4px;
}

.accentuated-brand::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f5f5f5;
  transition: width 0.4s ease;
}

.accentuated-brand:hover::before {
  width: 100%;
}

@keyframes frameReveal {
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
}

@keyframes narrativeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dtol {
    font-size: clamp(26px, 5.5vw, 34px);
  }
  .polished-text {
    font-size: clamp(15px, 2.8vw, 17px);
  }
  .dtol::after {
    width: 60px;
  }
  .dtol:hover::after {
    width: 90px;
  }
}

/* ----------------------refined-info-section---------------------------- */

/* ----------------------services---------------------------- */

.showsnowgrow {
  padding: clamp(70px, 11vh, 120px) 0;
  background: var(--light-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.majestic-section-header {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  color: #e2e8f0;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  animation: headerZoom 1.2s ease-out forwards;
}

.majestic-section-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f5f5f5;
  transition: width 0.5s ease;
}

.majestic-section-header:hover::after {
  width: 120px;
}

.opulent-service-grid {
  display: grid;
grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3.5vw, 30px);
  justify-items: center;
}

.fverrra {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: clamp(20px, 3.5vw, 30px);
  text-align: center;
  box-shadow: 0 5px 20px rgba(22, 49, 79, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  opacity: 0;
  transform: translateY(30px) rotateX(10deg);
  animation: blockRise 1s ease-out forwards;
  position: relative;
  max-width: 100%;
  width: 100%;
  backdrop-filter: blur(8px);
}

.fverrra:nth-child(1) {
  animation-delay: 0.1s;
}
.fverrra:nth-child(2) {
  animation-delay: 0.3s;
}
.fverrra:nth-child(3) {
  animation-delay: 0.5s;
}

.fverrra:hover {
  transform: translateY(-10px) rotateX(0deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.fverrra:hover::before {
  left: 100%;
}

.ig {
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  transition: transform 0.6s ease, color 0.4s ease;
}



.scnewpol {
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.sntxt {
  font-size: clamp(15px, 2vw, 17px);
  color: #000;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  transition: color 0.4s ease;
}

.fverrra:hover .sntxt {
  color: #000;
}

@keyframes headerZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blockRise {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .showsnowgrow {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .majestic-section-header {
    font-size: clamp(28px, 5.5vw, 38px);
  }
  .opulent-service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .fverrra {
    max-width: 100%;
    padding: 20px;
  }
  .scnewpol {
    font-size: clamp(20px, 2.5vw, 24px);
  }
  .sntxt {
    font-size: clamp(14px, 2vw, 16px);
  }
}

/* -----------------------help------------------------ */

.sectionzvott12 {
  padding: clamp(60px, 10vh, 110px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gdddr {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  opacity: 0;
  transform: translateY(-25px);
  animation: titleAscend 1s ease-out forwards;
  letter-spacing: 0.4px;
}

.elite-offer-array {
  display: grid;
  grid-template-columns: repeat(3, minmax(clamp(280px, 30vw, 340px), 1fr));
  gap: clamp(20px, 3vw, 30px);
  justify-items: center;
}

@media (max-width: 992px) {
  .elite-offer-array {
    grid-template-columns: 1fr;
  }
}

.prime-offer-card {
  background: transparent;
  border-radius: 10px;
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
 box-shadow: 0 0 12px rgba(22, 49, 79, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.97);
  animation: cardPop 0.8s ease-out forwards;
  max-width: 600px;
  width: 100%;
}
.prime-offer-card img{
  width: 100%;
  margin-bottom: 20px;
  height: 250px;
  object-fit: cover;
}

.prime-offer-card:nth-child(1) {
  animation-delay: 0.1s;
}
.prime-offer-card:nth-child(2) {
  animation-delay: 0.3s;
}
.prime-offer-card:nth-child(3) {
  animation-delay: 0.5s;
}
.prime-offer-card:nth-child(4) {
  animation-delay: 0.7s;
}

.prime-offer-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-headline {
  font-size: clamp(22px, 2.6vw, 25px);
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  letter-spacing: 0.2px;
}

.card-narrative {
  font-size: clamp(15px, 2vw, 17px);
  color: #000;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.prime-offer-card:hover .card-narrative {
  color: #000;
}

.vibrant-action-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(10px, 1.5vw, 12px) clamp(18px, 2.5vw, 22px);
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #000;
  text-decoration: none;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.vibrant-action-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.card-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.vibrant-action-link:hover .card-icon {
  transform: translateX(5px);
}

@keyframes titleAscend {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sectionzvott12 {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .gdddr {
    font-size: clamp(26px, 5vw, 34px);
  }
  .prime-offer-card {
    max-width: 100%;
    padding: 20px;
  }
  .card-headline {
    font-size: clamp(20px, 2.5vw, 23px);
  }
  .card-narrative {
    font-size: clamp(14px, 2vw, 16px);
  }
  .vibrant-action-link {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* ----------------------noble-commitment-section---------------------------- */

.zicfa {
  padding: clamp(60px, 10vh, 100px) 0;
  background: linear-gradient(180deg, #261a42 0%, #0f3a4a 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.zicfa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Ccircle cx="50" cy="50" r="50" fill="rgba(255,255,255,0.05)"/%3E%3C/svg%3E')
    repeat;
  opacity: 0.2;
  z-index: -1;
}

.stately-integrity-panel {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: panelRise 1.2s ease-out forwards;
}

.regal-title {
  font-size: clamp(34px, 4.7vw, 46px);
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: color 0.3s ease;
}



.dignified-content-block {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.95);
  animation: contentScale 1.3s ease-out 0.2s forwards;
}

.articulate-text {
  font-size: clamp(17px, 2.2vw, 19px);
  color: #d1d5db;
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
  transition: color 0.3s ease;
}

.articulate-text:hover {
  color: #f5f5f5;
}

.prime-accent {
  font-weight: 700;
  color: #f5f5f5;
  padding: 0 5px;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.prime-accent:hover {
  background: rgba(250, 204, 21, 0.1);
}

@keyframes panelRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .zicfa {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .regal-title {
    font-size: clamp(26px, 5.5vw, 34px);
  }
  .articulate-text {
    font-size: clamp(15px, 2.8vw, 17px);
  }
}

/* ----------------------noble-commitment-section---------------------------- */

/* ----------------------join, form---------------------------- */

.areaost {
  padding: clamp(70px, 11vh, 120px) 0;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.oscrijr {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 4vw, 40px);
  align-items: center;
}

@media (min-width: 992px) {
  .oscrijr {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.regal-info-block {
  max-width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: infoFade 1s ease-out forwards;
}

@media (min-width: 992px) {
  .regal-info-block {
    max-width: 48%;
  }
}

.stately-main-title {
  font-size: clamp(32px, 4.5vw, 42px);
  font-weight: 800;
  color: #000;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .stately-main-title {
    text-align: left;
  }
}



.polished-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: #000;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .polished-subtitle {
    text-align: left;
  }
}

.polished-subtitle:hover {
  color: #000;
}

.noble-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateX(-15px);
  animation: entrySlide 0.9s ease-out forwards;
}

.contact-entry:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-entry:nth-child(2) {
  animation-delay: 0.3s;
}
.contact-entry:nth-child(3) {
  animation-delay: 0.5s;
}

.entry-icon {
  width: 22px;
  height: 22px;
  color: #000;
  margin-top: 2px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-entry:hover .entry-icon {
  transform: scale(1.15);
  color: #000;
}

.entry-title {
  font-size: clamp(17px, 1.9vw, 19px);
  font-weight: 600;
  color: #000;
  margin: 0;
}

.entry-detail {
  font-size: clamp(14px, 1.7vw, 16px);
  color: #000;
  margin: 4px 0 0 0;
  transition: color 0.3s ease;
}

.contact-entry:hover .entry-detail {
  color: #000;
}

.entry-detail a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-detail a:hover {
  color: #000;
}

.compliance-notice {
  margin-top: 25px;
  opacity: 0;
  transform: translateY(15px);
  animation: entrySlide 0.9s ease-out 0.7s forwards;
}

.formpostje {
  max-width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.98);
  animation: formScale 1s ease-out 0.2s forwards;
}

@media (min-width: 992px) {
  .formpostje {
    max-width: 48%;
  }
}

.join__form {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 22px);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-caption {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  color: #1e293b;
}

.form-input-field,
.form-textarea-field {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: clamp(14px, 1.5vw, 16px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input-field:focus,
.form-textarea-field:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  outline: none;
}

.form-textarea-field {
  resize: vertical;
  min-height: 100px;
}

.form-disclaimer {
  font-size: clamp(12px, 1.3vw, 14px);
  color: #475569;
  text-align: center;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.form-disclaimer:hover {
  color: #1e293b;
}

.disclaimer-link {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.disclaimer-link:hover {
  color: #1e40af;
}

.form-submit-btn {
  max-width: 200px;
  margin: 0 auto;
  padding: 12px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.25);
}



@keyframes infoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes entrySlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes formScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .areaost {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .stately-main-title {
    font-size: clamp(24px, 5vw, 32px);
  }
  .polished-subtitle {
    font-size: clamp(14px, 2vw, 16px);
  }
  .entry-title {
    font-size: clamp(16px, 1.8vw, 18px);
  }
  .entry-detail {
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .formpostje {
    padding: 18px;
  }
  .form-caption {
    font-size: 14px;
  }
  .form-input-field,
  .form-textarea-field {
    font-size: 14px;
  }
  .form-disclaimer {
    font-size: 12px;
  }
  .form-submit-btn {
    font-size: 14px;
    max-width: 160px;
  }
}

/* --------------------------footer--------------------------- */

.ffblockpanel {
  padding: clamp(50px, 9vh, 90px) 0;
  background: var(--light-color);
  overflow: hidden;
  z-index: 1;
  margin-top: 10px;
  box-shadow: rgba(124, 58, 237, 0.12) 0px 1px 10px;
}

.stately-disclaimer-area {

  margin: 0 auto clamp(25px, 4vw, 35px) auto;
  opacity: 0;
  transform: translateY(15px);
  animation: disclaimerSlide 1.1s ease-out forwards;
}

.articulate-disclaimer {
  font-size: clamp(14px, 1.7vw, 16px);
  color: #000;
  line-height: 1.65;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

/* .articulate-disclaimer:hover {
  color: #1e293b;
} */

.articulate-disclaimer strong {
  color: #000;
  font-weight: 600;
}

/* .articulate-disclaimer a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.articulate-disclaimer a:hover {
  color: #1e40af;
} */

.regal-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(15px, 2.5vw, 25px);
  opacity: 0;
  transform: scale(0.98);
  animation: contentScale 1s ease-out 0.2s forwards;
}

@media (max-width: 768px) {
  .regal-footer-content {
    flex-direction: column;
    gap: 18px;
  }
}

.noble-copyright-notice {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #000;
  font-weight: 400;
  transition: color 0.3s ease;
}



.prime-nav-collection {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.8vw, 20px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-unit {
  opacity: 0;
  transform: translateX(-10px);
  animation: navSlide 0.7s ease-out forwards;
}

.footer-nav-unit:nth-child(1) {
  animation-delay: 0.3s;
}
.footer-nav-unit:nth-child(2) {
  animation-delay: 0.4s;
}
.footer-nav-unit:nth-child(3) {
  animation-delay: 0.5s;
}
.footer-nav-unit:nth-child(4) {
  animation-delay: 0.6s;
}

.distinctive-nav-anchor {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.distinctive-nav-anchor:hover {
  color: #000;
  transform: translateX(3px);
}

@keyframes disclaimerSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes navSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ffblockpanel {
    padding: clamp(30px, 7vh, 50px) 0;
  }
  .articulate-disclaimer {
    font-size: clamp(12px, 1.4vw, 14px);
  }
  .noble-copyright-notice {
    font-size: clamp(12px, 1.4vw, 14px);
    text-align: center;
  }
  .prime-nav-collection {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .distinctive-nav-anchor {
    font-size: clamp(12px, 1.4vw, 14px);
  }
}

/* -------------------------cookie------------------------------- */

.elegant-cookie-notice {
  position: fixed;
  bottom: clamp(20px, 3vw, 30px);
  right: clamp(20px, 3vw, 30px);
  max-width: clamp(300px, 35vw, 400px);
  width: 90%;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15);
  z-index: 1000;
  opacity: 0;
  transform: translateY(60px);
  animation: cookieSlideUp 0.8s ease-out forwards;
  transition: box-shadow 0.4s ease;
}

.elegant-cookie-notice:hover {
  box-shadow: 0 12px 35px rgba(0, 31, 63, 0.3);
}

.refined-cookie-content {
  padding: clamp(20px, 3vw, 25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prestige-cookie-heading {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
}

.prestige-cookie-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #ffd700, #d4af37);
  margin: 10px auto 0;
  transition: width 0.4s ease;
}

.prestige-cookie-heading:hover::after {
  width: 80px;
}

.sophisticated-cookie-text {
  font-size: clamp(13px, 1.6vw, 14px);
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.noble-cookie-actions {
  display: flex;
  gap: clamp(15px, 2vw, 20px);
}

.luxury-accept-button {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxury-accept-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.3);
}

.luxury-accept-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0);
}

.luxury-accept-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

.luxury-reject-button {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
  background: #f1f2f6;
  color: var(--dark-color);
  border: none;
  border-radius: 50px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.luxury-reject-button:hover {
  background: #e6e8ef;
}

.luxury-reject-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.2);
  background: #d0d4d8;
}

.luxury-reject-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0);
}

.luxury-reject-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

@keyframes cookieSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .elegant-cookie-notice {
    max-width: 90%;
    bottom: 15px;
    right: 15px;
    padding: 15px;
  }
  .prestige-cookie-heading {
    font-size: clamp(16px, 2vw, 18px);
  }
  .sophisticated-cookie-text {
    font-size: clamp(12px, 1.5vw, 13px);
  }
  .luxury-accept-button,
  .luxury-reject-button {
    padding: 8px 20px;
    font-size: clamp(12px, 1.4vw, 13px);
  }
}

/* -------------------------pages--------------------------- */

.main-content {

  min-height: 100vh;
  padding: clamp(50px, 10vh, 80px) 0;
}

.ptdcftor {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 8vh, 60px) 0;
  background: #f5f5f5;
}

.ptdcftor-h {
  font-size: clamp(28px, 5vw, 36px);
  margin-bottom: 32px;
  text-align: center;
  color: #000;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.8s ease-out forwards;
}

.ptdcftor-c {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
  color: #000;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.ptdcftor-c p {
  margin-bottom: 20px;
  transition: color 0.3s ease;
  color:#000;
}



.ptdcftor-c h2 {
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 16px;
  color: #000;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.ptdcftor-c h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #f5f5f5;
  transition: width 0.3s ease;
}

.ptdcftor-c h2:hover::after {
  width: 100px;
}

.ptdcftor-c ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.ptdcftor-c li {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  color:#000;
}

.ptdcftor-c li:hover {
  transform: translateX(5px);
}

.ptdcftor-c a {
  color: #4da8ff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.ptdcftor-c a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #4da8ff;
  transition: width 0.3s ease;
}

.ptdcftor-c a:hover {
  color: #2a2a4e;
}

.ptdcftor-c a:hover::after {
  width: 100%;
}

.policy-action-btn {
  max-width: 180px;
  width: 100%;
  margin: 32px auto 0;
  padding: 12px 0;
  background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
  color: #000;
  text-align: center;
  display: block;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.policy-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(77, 168, 255, 0.4);
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ptdcftor-h {
    font-size: clamp(24px, 6vw, 32px);
  }
  .ptdcftor-c {
    font-size: 14px;
  }
  .ptdcftor-c h2 {
    font-size: 20px;
  }
  .policy-action-btn {
    padding: 10px 0;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .ptdcftor {
    padding: 30px 0;
  }
  .ptdcftor-h {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .ptdcftor-c {
    font-size: 13px;
  }
  .ptdcftor-c h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .ptdcftor-c ul {
    margin-left: 15px;
  }
  .ptdcftor-c li {
    margin-bottom: 8px;
  }

  .policy-action-btn {
    max-width: 160px;
    margin-top: 20px;
    padding: 8px 0;
  }
}
.info-toggle {
  cursor: pointer;
  /* border: 1px solid #e2e8f0; */
  border-radius: 8px;
  padding: 12px 16px;
  background: transparent;
  transition: background 0.3s ease;
}

.info-toggle:hover {
  /* background: #f1f5f9; */
}

.info-toggle summary {
  font-weight: bold;
  list-style: none;  
}

.info-toggle[open] summary {
  color: #4f46e5;    
}
.refined-narrative-block{
  margin-bottom: 30px;
  width: 50%;
  color: #000;
  padding-left:10px ;
  padding-right: 10px;
  cursor: pointer;
  transition: 0.6s;
    transform: scale(1);
}
.refined-narrative-block img:hover{
  transform: scale(0.97)!important;
  transition: 0.6s;
}
.block-ot-hub{
  display: flex;
  flex-wrap: wrap;
}
.refined-narrative-block p{
  margin-top: 20px;
}
.refined-narrative-block .details-content {
  display: none;
}
.refined-narrative-block.open .details-content {
  display: block;
}
@media screen and (max-width:800px) {
  .refined-narrative-block{
    width: 100%;
  }
}

  .accordion-summary {
    cursor: pointer;
    font-weight: bold;
    font-size: 22px;
    background: transparent;
    text-align: left;
    color:#000;
  
  }
.accordion-item{
  background: transparent;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
  .accordion-item .accordion-content {
    display: none;
    padding: 10px;
    padding-left: 0px;
    
    margin-bottom: 10px;
    background: transparent;
text-align: left;
color:#000;
  }
  .accordion-item .accordion-content .prime-accent{
    color:#000;
  }

  .accordion-item.open .accordion-content {
    display: block;
  }

      .elipse-link {
        margin: auto;
            display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 260px;
    height: 90px;
    margin-bottom: 40px;
    margin-top: 40px;
    position: relative;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    }
    .elipse-link .elipse {
    border: 1px solid #fff;
    box-sizing: border-box;
    transform: rotate(-21.99deg);
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    
}

.elipse-link .e1 {
    transform: rotate(-21.99deg);
    transition: 0.3s;
}
.elipse-link .e2 {
    transform: rotate(-10.86deg);
    transition: 0.3s;
}
.elipse-link:hover .e1 {
   transform: rotate(-10.99deg);
   transition: 0.3s;
}

.elipse-link:hover .e2 {
 
     transform: rotate(0.86deg);
     transition: 0.3s;
  
}
.prime-offer-card .elipse-link{
  color:#000;
}
.section-f-a{
  background: #f5f5f5;
}


 .block-ff {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px;
    margin-top: 50px;
    color:#000;
    width: 100%;
    box-shadow: 1px 4px 4px rgba(0, 0, 0, 0.15);
}





.bt-th{
  display: flex;
  justify-content: center;
  color: #000;
}
.bt-th a::after{
 height: 0px;
}

.bfzicfa{
  display: flex;

  align-items: stretch;
}
.bfzicfa .bl{

    padding: 0px 10px;
  flex: 1;
}
.bfzicfa .bl img{
  height: 100%;
}
.bfzicfa .dignified-content-block{
 
  width: 100%;
}
@media screen and (max-width:800px) {
  .bfzicfa .bl{
    max-width: 100%;
    width: 100%;
    flex: auto;
  }
  .bfzicfa{
    flex-wrap: wrap;
    justify-content: center;
  }
  .bfzicfa .dignified-content-block{
  max-width: 100%;
  width: 100%;
}
  
}