:root {
  --dark-primary: #0C2455;
  --primary: #2561D8;;
  --text-dark: #111;
  --text-muted: #555;
  --bg-light: #f9fbff;
}

/* General */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
  background-color: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}

.hero,
.hero p,
.hero a,
.hero-content p {
  font-family: 'Inter', sans-serif !important;
}
.section-container {
  max-width: 1300px;  
  margin: 0 auto;
  padding: 0;
}


h1, h2, h3, h4, h5, h6,
.gap-title,
.proven-title,
.how-title,
.wbd-title,
.services-title,
.get-started-title {
  font-family: 'Albert Sans', sans-serif !important;
  color: #191817;
}

h1, h2, h3, .fw-semibold {
  font-weight: 300;
}
p, li {
  font-weight: 400;
}


/* --- NAVBAR --- */
nav {
  z-index: 10;
  background: var(--dark-primary) !important;
  backdrop-filter: blur(8px);
}

.navbar-brand img {
  max-height: 48px;
  transition: transform 0.2s ease;
}
.navbar-brand img:hover {
  transform: scale(1.05);
}

/* White links on blue background */
.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #e2e6ea !important; /* subtle hover contrast */
}

/* --- NAVBAR COLOR CHANGE ON SCROLL --- */
.navbar.scrolled {
  background: #f9fbff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--dark-primary) !important;
}

.navbar.scrolled .btn-outline-primary {
  border-color: var(--dark-primary);
  color: var(--dark-primary);
}

.navbar.scrolled .btn-outline-primary:hover {
  background: var(--dark-primary);
  color: #fff;
}

.navbar.scrolled .navbar-brand img {
  filter: none; /* ensures logo color stays correct if transparent */
}

.navbar .logo-dark {
  display: none;
}

.navbar .logo-light {
  display: inline;
}

.navbar.scrolled .logo-light {
  display: none;
}

.navbar.scrolled .logo-dark {
  display: inline;
}

/* --- BUTTONS --- */
.btn {
  transition: all 0.2s ease;
  font-weight: 500;
  border-radius: 25px;
  padding: 10px 24px;
}

/* Primary (used on blue background — white fill, blue text) */
.btn-primary {
  background-color: #fff;
  color: var(--dark-primary);
  border: none;
}

.btn-primary:hover {
  background-color: #e2e6ea;
  color: var(--dark-primary);
}

/* Outline (used on blue background — white border, white text) */
.btn-outline-primary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-primary:hover {
  background: #fff;
  color: var(--dark-primary);
}

.btn-light-blue {
  color: #3B7CFD !important;
}
.btn-light-blue:hover {
  color: #1f5de3 !important; 
}

#how-we-help .btn-outline-primary {
  border-color: var(--dark-primary);
  color: var(--dark-primary);
}

#how-we-help .btn-outline-primary:hover {
  background: var(--dark-primary);
  color: #fff;
}

/* --- HERO SECTION --- */
.hero {
  background: var(--dark-primary);
  color: #fff;
  padding-bottom: 6rem !important;
  padding: 8rem 1rem 3rem;
  position: relative;
  z-index: 0;
}

/* Add the "K" image background on the right side */
/* Hero background image */
.hero::after {
  content: "";
  position: absolute;
  inset: 0; /* covers entire hero */
  background: url("../images/wave-background-image.png") no-repeat center center;
  background-size: cover;
  opacity: 0.35; /* controls blending strength */
  pointer-events: none;
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* Responsive improvements for mobile */
@media (max-width: 768px) {
  .hero::after {
    position: absolute;
    inset: 0; /* fill entire hero section */
    width: 100%;
    height: 100%;
    background: url("../images/wave-background-image.png") no-repeat center center;
    background-size: cover; /* ensures it fills width without distortion */
  /* lower opacity to keep text readable */
    mix-blend-mode: multiply;
  }

  /* Slightly darken background for better contrast with text */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: none;
  }

  .hero > .container {
    position: relative;
    z-index: 3;
  }
}


.hero h1 {
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  color: #D4F0FC;
  text-align: left;
  max-width: 1000px;
  white-space: normal;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .hero h1 {
    text-align: center;
  }

  .hero-content p {
    text-align: center;
  }
}

.hero-content {
  margin-top: 2rem;
  text-align: left;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-content p {
  text-align: left;
}

.hero-content .btn {
  margin-top: 1rem;
}

.hero .section-container {
  padding-left: 0;  
  padding-right: 0; 
}

.hero p {
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.5;
  color: #F4F3F2;
  max-width: 650px;
}

.hero .btn-primary {
  background-color: #fff;
  color: var(--dark-primary);
  font-family: 'Inter', sans-serif !important;
}

.hero .btn-primary:hover {
  background-color: #e2e6ea;
}

.hero .btn-outline-primary {
  border: 2px solid #fff;
  color: #fff;
}

.hero .btn-outline-primary:hover {
  background-color: #fff;
  color: var(--dark-primary);
}


/* ================================
   COMPLIANCE GAP
===================================*/

.compliance-gap-section {
  padding: 5rem 0;
  background: #fff;
}

.gap-container {
  max-width: 1100px;
}

.gap-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #2561D8;
  margin-bottom: 1.5rem;
}

.gap-title {
  font-family: 'Albert Sans', sans-serif !important;
  font-size: clamp(1.5rem, 4vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  color: #191817;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.gap-title span {
  display: block;
  white-space: nowrap;
}

.gap-subtext {
  max-width: 720px;
  font-size: 1rem;
  color: #333;
  margin-bottom: 3.5rem;
}

.grid-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.gap-card {
  border: 1px solid #7CBFFF;
  border-radius: 2px;
  padding: 2.5rem 2.75rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gap-card h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #191817;
}

.gap-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

.gap-icon {
  color: #7CBFFF;
  margin-bottom: 1rem;
  line-height: 0;
}
.gap-icon svg {
  display: block;
}

.gap-card:hover {
  border-color: #2561D8;
  box-shadow: 0 6px 20px rgba(37, 97, 216, 0.08);
}

@media (max-width: 768px) {

  .grid-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gap-card {
    padding: 2rem 1.75rem;
  }

  /* Add padding to section container */
  .compliance-gap-section .section-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Title adjustments */
  .gap-title {
    font-size: clamp(1.8rem, 5vw, 32px); 
    max-width: 100%; 
    margin-bottom: 1.5rem;
    text-align: left; 
  }
  .gap-title span {
    white-space: normal; /* allow wrapping */
  }

  /* Label adjustments */
  .gap-label {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

 .gap-subtext {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

}

/* ================================
   PROVEN EXPERTISE SECTION
===================================*/

.proven-wrapper {
  padding: 6rem 0;
  position: relative; /* ensure pseudo-element is positioned relative to this section */
  overflow: visible;  
}

.proven-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #2561D8;
  margin-bottom: 1.5rem;
}

.proven-title {
  font-family: 'Albert Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  font-weight: 300;
  line-height: 1.07;
  color: #191817;
  max-width: 620px;
  margin-bottom: 2rem;
}

.proven-subtext {
  max-width: 720px;
  font-size: 1rem;
  color: #333;
  margin-bottom: 3.5rem;
}

.proven-wrapper::after {
  content: "";
  position: absolute;
  top:60px;          /* pushes the shape DOWN so it's level with the text */
  left: 70%;           /* same horizontal positioning you already use */
  width: 300px;
  height: 480px;
  background: linear-gradient(to bottom, #2561D8 0%, #F4F3F2 100%);
  clip-path: polygon(
    66.5% 50%, 
    0 0, 
    36.5% 0, 
    100% 50%, 
    47% 91.8%, 
    36.7% 100%, 
    0 100%, 
    66.5% 50%
  );
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.proven-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #7CBFFF;
}

.proven-item {
  border-right: 1px solid #7CBFFF;
  border-bottom: 1px solid #7CBFFF;
}
.proven-content {
  padding: 2.5rem 2.75rem;
}
.proven-item:nth-child(2n) {
  border-right: none;
}

.proven-item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.proven-index {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2561D8;
  margin-bottom: 0.75rem;
}

.proven-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2E2E2E;
  margin: 0;
}

@media (max-width: 768px) {

  /* Add side padding like other sections */
  #proven-expertise .section-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Title adjustments */
  .proven-title {
    font-size: clamp(1.8rem, 5vw, 32px);
    max-width: 100%;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  /* Label + subtext alignment */
  .proven-label,
  .proven-subtext {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  /* Stack features vertically */
  .proven-feature {
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    border-left: 1px solid #7CBFFF;
  }

  /* Remove desktop column spacing */
  .proven-feature:last-child {
    margin-bottom: 0;
  }


  /* Reposition + shrink K-shape for mobile */
  .proven-wrapper::after {
    left: 50%;
    top: 22%;
    transform: translateX(-50%);
    width: 200px;
    height: 360px;
    opacity: 0.08;
  }

  .proven-grid {
    grid-template-columns: 1fr;
  }

  .proven-item {
    border-right: none;
  }

  .proven-item:last-child {
    border-bottom: none;
  }
}

/* ================================
   WHAT BRACKET DOES 
===================================*/
.wbd-section {
  padding: 6rem 0;
  background: #fff;
}

.wbd-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #2561D8;
  margin-bottom: 1.5rem;
}

.wbd-title {
  font-family: 'Albert Sans', sans-serif !important;
  font-size: clamp(2rem, 4vw, 52px);
  font-weight: 300;
  line-height: 1.07;
  color: #191817;
  margin-bottom: 2rem;
}

.wbd-title span {
  display: block;
  white-space: nowrap;
}

.wbd-desc {
  font-size: 1rem;
  color: #333;
  max-width: 420px;
  margin-bottom: 2rem;
}

.wbd-btn {
  background: #2561D8;
  font-family: 'Albert Sans', sans-serif !important;
  color: #F4F3F2;
  padding: 0.7rem 1.75rem;
  border-radius: 25px;
  font-weight: 500;
}

.wbd-btn:hover {
  background: #1d4fb6;
  color: #F4F3F2;
}

.wbd-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wbd-step {
  border: 1px solid #7CBFFF;
  padding: 1.75rem 2rem;
  background: #fff;
}

.wbd-step h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #191817;
}

.wbd-step p {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.wbd-item {
  border-bottom: 1px solid #7CBFFF; 
  margin: 0;
  padding: 1.75rem 2rem; 
  width: 100%;
  box-sizing: border-box;
}

.wbd-item:last-child {
  border-bottom: none;
}

.wbd-item h6 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.wbd-item p {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}

/* Mobile tweaks */
@media (max-width: 768px) {

  .wbd-section .section-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Title adjustments */
  .wbd-title {
    font-size: clamp(1.8rem, 5vw, 32px);
    max-width: 100%;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  /* Label adjustments */
  .wbd-label {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  /* Description adjustments */
  .wbd-desc {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  /* Button adjustments */
  .wbd-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }

  .wbd-steps {
    margin-top: 2rem;
    gap: 1.25rem;
  }

  .wbd-step {
    padding: 1.25rem 1.5rem;
  }
}

/* ================================
   HOW IT WORKS SECTION
===================================*/
.how-works-wrapper {
  background: #fff;
  padding: 6rem 0;
}

.how-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #2561D8;
  margin-bottom: 1rem;
}

.how-title {
  font-family: 'Albert Sans', sans-serif !important;
  font-size: clamp(2rem, 4vw, 48px);
  font-weight: 300;
  line-height: 1.07;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.how-intro p {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* CARDS */
.how-card {
  position: relative;
  border: 1px solid #7CBFFF;
  padding: 3rem 2rem 2rem;
  background: #fff;
  min-height: 280px;
}

.how-card p {
  font-weight: 400;
}

/* NUMBER BADGE (perfect smooth connection) */
.how-number {
  position: absolute;
  bottom: calc(100% - 1px);
  left: -1px;
  background: #fff;
  border: 1px solid #7CBFFF;
  color: #2561D8;
  font-weight: 600;
  padding: 4px 12px;
  font-size: 0.9rem;
  line-height: 1;
  box-sizing: border-box;
}


/* Card headings */
.how-card h6 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.how-card p {
  font-weight: 400;
  font-size: 0.9rem;
  color: #191817;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {

  .how-works-wrapper {
    padding: 3rem 1.5rem;
  }
    
  .how-label {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .how-title {
    font-size: clamp(1.8rem, 5vw, 32px);
    max-width: 100%;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  
.how-intro p {
  font-weight: 400;
  font-size: 1rem;
  color: #333;
  line-height: 1.55;
}

  /* Stack cards vertically */
  .how-cards .col-md-4 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .how-card {
    padding: 2rem 1.5rem;
    min-height: auto;
    margin-bottom: 1.5rem;
    position: relative; /* Ensure badge is positioned relative to card */
  }

  /* Correct number badge placement */
  .how-number {
    top: -12px; /* move above the card */
    left: 10px; /* slight offset from left edge */
    bottom: auto;
    z-index: 2; /* sit above card content */
  }
}

@media (max-width: 480px) {
  .how-number {
    padding: 3px 10px;
    font-size: 0.85rem;
    top: -10px; /* adjust for smaller screens */
    left: 8px;
  }
}



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

.services-section {
  padding: 6rem 0;
  background: #fff;
}

.services-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #2561D8;
  margin-bottom: 1.5rem;
}

.services-title {
  font-family: 'Albert Sans', sans-serif !important;
  font-size: clamp(2rem, 4vw, 52px);
  font-weight: 300;
  line-height: 1.07;
  color: #191817;
  margin-bottom: 2rem;
}

.services-desc {
  font-size: 1rem;
  color: #333;
  max-width: 700px; 
  margin-bottom: 2rem;
}

.services-btn {
  background: #2561D8;
  color: #fff;
  padding: 0.7rem 1.75rem;
  border-radius: 25px;
  font-weight: 500;
}

.services-btn:hover {
  background: #1d4fb6;
  color: #fff;
}

.services-box {
  border: 1px solid #7CBFFF;
  background: #fff;
  padding: 0;
  position: relative; 
}

.services-box::after {
  content: "";
  position: absolute;
  bottom: -1px;          
  left: 100%;             
  width: 223%;  
  height: 1px;
  background-color: #7CBFFF;
  pointer-events: none;
}

.services-item {
  border-bottom: 1px solid #7CBFFF;
  margin: 0;
  padding: 1.75rem 2rem;
}

.services-item:last-child {
  border-bottom: none;
}

.services-item h6 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.services-item p {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}

/* ================================
   OUR SERVICES - MOBILE RESPONSIVE
=================================== */
@media (max-width: 768px) {

  .services-section {
    padding: 3rem 1.5rem;
  }

  .services-label {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .services-title {
    font-size: clamp(1.8rem, 5vw, 32px);
    max-width: 100%;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  /* Stack columns vertically */
  .services-section .row.g-5 {
    flex-direction: column;
  }

  /* Left side box */
  .services-box {
    padding: 1rem; /* slightly smaller padding */
    margin-bottom: 2rem; /* spacing from right content */
  }

  /* Horizontal line extension: reduce but keep it visible */
  .services-box::after {
    width: 10rem;
    left: auto;
    right: 0;
  }

  /* Each service item full width with original borders */
  .services-item {
    padding: 1rem; /* tighter padding for mobile */
    border-bottom: 1px solid #7CBFFF; /* keep border like desktop */
  }

  .services-item:last-child {
    border-bottom: none;
  }

  .services-desc {
    font-weight: 400;
    font-size: 1rem;
    color: #333;
    line-height: 1.55;
  }

  /* Buttons: center them and adjust size */
  .services-btn,
  .service-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    display: block;
    margin: 1rem auto 0;
  }
}

/* SERVICE BUTTON (Figma-accurate) */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  
  background: #2561D8;
  color: #fff;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.service-btn .arrow {
  font-size: 1rem;
  margin-left: 4px;
}

.service-btn:hover {
  background: #1d4fb6;
  color: #fff;
}

/* ================================
   GET STARTED SECTION
===================================*/
.get-started-wrapper {
  background: #fff;
  margin: 0;
  padding: 1.5rem 0 2.5rem; /* reduced top padding */
}

.get-started-section {
  background: var(--dark-primary);
  box-shadow: 0 6px 25px rgba(13, 110, 253, 0.15);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1300px;
  padding: 4rem 5rem;
}

.get-started-section h2 {
  font-family: 'Albert Sans', sans-serif !important;
  font-weight: 300; /* Light */
  font-style: normal;
  font-size: clamp(2rem, 4vw, 3rem); /* responsive, ≈48px max */
  line-height: 1.1; /* 110% */
  letter-spacing: -0.04em; /* -4% tracking */
  color: #F4F3F2;
  margin-bottom: 1.5rem;
}


@media (max-width: 768px) {
  .get-started-section h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
    text-align: center;
  }

  .get-started-section p {
    text-align: center;
  }

  .get-started-section a.btn {
    display: block;
    margin: 0 auto;       
    text-align: center;
    width: fit-content;    
    padding: 0.6rem 1.4rem; 
    font-size: 0.9rem;    
  }
}

/* Replace text "K" with image background */
.get-started-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url("../images/k-shape.png") no-repeat right center;
  background-size: contain;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1;
}

/* Ensure content stays on top of image */
.get-started-section .row {
  position: relative;
  z-index: 2;
}

/* Divider under section aligned with its width */
.divider-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.footer-divider {
  height: 2px;
  background-color: var(--primary);
  width: 100%;
  max-width: 1300px;
  border-radius: 0;
}

/* Footer alignment matches get-started width */
footer .container {
  max-width: 1300px;
}

/* --- Responsive tweaks --- */
@media (max-width: 992px) {
  .get-started-section {
    padding: 3rem 2rem;
    max-width: 95%;
  }

  .get-started-section::after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url("../images/k-shape.png") no-repeat center bottom;
    background-size: cover;
    opacity: 0.18;
  }

  .footer-divider {
    max-width: 95%;
  }

  footer .container {
    max-width: 95%;
  }
}
/* 
html, body {
  overflow-x: hidden !important;
  width: 100%;
} */
