@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* employers2 CSS */

/* Spacing Scale */
:root {
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --space-3xl: 6rem;
  --space-4xl: 6rem;
  --container-max: 1200px;
  --container-padding: 2rem;
}



.employers h2 {
  font-weight: 500;
  color: #006995;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  font-family: 'montserrat';
}

.secondary-hero-wrapper {
  margin: 0 auto;
  padding: 0 0px;
}

/* Ensure header stays on top and follows scroll */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

.header-container {
  max-width: none;
}

.header .nav-link {
  color: #006995;
}

.header:not(.scrolled) .nav-link:hover {
  color: #006995;
}

.header:not(.scrolled) .nav-link::after {
  background-color: #006995;
}

.hamburger span {
  background: #006995;
}

/* Hero Image Background */
.secondary-hero-combined {
  position: relative;
  width: calc(100% - 16px);
  height: 75vh;
  border-radius: 20px;
  overflow: hidden;
  margin: 0px auto 0 auto;
  margin-left: 8px;
  margin-right: 8px;
  background-image: url('photos/employer-large2.webp');
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
}


@media (max-width: 480px) {
  .secondary-hero-combined {
    background-position: 85% bottom;
  }
}

/* Dark overlay for image */
.secondary-hero-combined::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Secondary Hero Image Section */
.secondary-hero-image-section {
  height: 75vh; 
  z-index: 2;
  padding: 60px 0;
}

/* White Card that overlaps the image */
.secondary-hero-card {
  background: #ffffffb5;
  border-radius: 16px;
  border: 1px solid white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 10;
}

.secondary-hero-card-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading - show/hide based on viewport */
.desktop-title {
  display: none;
}

.mobile-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #006995;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/* Grid for text content - STACKS BY DEFAULT (mobile first) */
.secondary-hero-text-grid {
  display: grid;
}

/* Main text paragraph */
.secondary-hero-text-main {
  font-size: 1.625rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/* Secondary text paragraph */
.secondary-hero-text-secondary {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

/* CTA Button */
.secondary-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #006995 0%, #0093D1 100%);
  color: white;
  border: none;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 105, 149, 0.25);
  position: relative;
}

.secondary-contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #005580 0%, #0077a8 100%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  z-index: -1;
  border-radius: 8px;
}

.secondary-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 105, 149, 0.3);
}

.secondary-contact-btn:hover .btn-arrow {
  transform: translateX(8px);
}

.secondary-contact-btn:hover::before {
  opacity: 1;
}

.secondary-contact-btn:active {
  transform: translateY(-1px);
  transition: all 0.1s ease;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.4s ease-out;
  font-size: 20px;
}

/* Animation keyframes */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile/Tablet Styles - Text Stacked (below 768px) */
@media (max-width: 767px) {
  .mobile-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    line-height: 1.35;
  }

  .secondary-hero-text-main {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .secondary-hero-text-secondary {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
  }

  .secondary-hero-card {
    margin: -150px 22px 40px 22px; 
  }
	
}

/* Mobile Only Styles - Image Height Reduction */
@media (max-width: 480px) {
  .desktop-title {
    display: none;
  }
  
  .mobile-title {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .secondary-hero-combined {
    margin-top: 0px;
    height: 60vh;
  }
  
  .secondary-hero-image-section {
    height: 50vh;
    padding: 30px 20px;
  }
  
  .secondary-hero-card {
    margin: -120px 22px 40px 22px;
  }
  
  .secondary-hero-combined::after {
    display: none;
  }

  .secondary-hero-text-main {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 0.875rem;
  }

  .secondary-hero-text-secondary {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}

/* Tablet/Desktop Styles 768px+ */
@media (min-width: 768px) {
  .mobile-title {
    display: none;
  }
  
  .desktop-title {
    display: block;
    position: absolute;
    top: 80px;
    left: 60px;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    z-index: 3;
    max-width: 600px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
  }
  
  .secondary-hero-image-section {
    position: relative;
  }
  
  .secondary-hero-card {
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.3s forwards;
    padding: 3rem;
    margin: -200px 40px 60px 40px;
  }
  
  .secondary-hero-text-main {
    font-size: 1.375rem;
  }

  .secondary-hero-text-secondary {
    font-size: 1rem;
  }
	
}
/* Main Content Section */
.main-content-section {
  padding: 1.5rem 0;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}



.content-left,
.content-right {
  display: flex;
  flex-direction: column;
}

.content-left h2 {
  font-weight: 500;
  color: #006995;
  margin-bottom: var(--space-xs);
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
}

.content-left h2:first-child,
.content-right h2:first-child {
  margin-top: 0;
}

.content-left p,
.content-right p {
  line-height: 1.8;
  color: #555;
  margin-bottom: var(--space-xs);
}

.content-left ul,
.content-right ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-sm);
}

.content-left li,
.content-right li {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.75rem;
  position: relative;
}

.content-left li:before,
.content-container,
.content-right li:before {
  content: '•';
  left: 0;
  color: #006995;
  font-weight: bold;
}
.content-left li:before{
	padding-right: 1em;
}

/* Company Description Section */
.company-description {
  padding: var(--space-4xl) var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.company-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('photos/employer-dog.jpg');
  background-size: cover;
  filter: brightness(60%);
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.company-description p {
  margin-bottom: var(--space-4xl);
  font-family: 'Montserrat';
  font-weight: 400;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.company-description p:last-child {
  margin-bottom: 0;
}

.company-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.company-description .secondary-contact-btn {
  background-color: #006995;
  color: white;
  border: none;
  z-index: 2;
}

.company-description .secondary-contact-btn:hover {
  background-color: #005277;
  transform: translateY(-2px);
}

/* Ensure Montserrat used for charts/labels */
body, canvas, table {
  font-family: 'Montserrat', sans-serif;
}


.text-column li:before {
  content: '•';
  left: 0;
  color: #006995;
  font-weight: bold;
  margin-right: 1em;
}


.text-column{
	max-width: 1200px;
	margin: 0 auto;
}



/* Responsive Design */
@media (max-width: 968px) {
  :root {
    --container-padding: 1.5rem;
  }

  .secondary-hero-combined {
    padding-top: 60px;
  }

  .secondary-hero-content-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .secondary-hero-button-wrapper {
    margin-left: 0;
    align-self: flex-start;
  }

  .secondary-hero-title {
    font-size: 2.1rem;
  }

  .secondary-hero-subtitle {
    font-size: 22px;
  }

  .content-container,
  .impact-container {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  .chart-box canvas {
    max-height: 320px;
  }


  .table-column {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 600px;
  }

  .stats-section {
    padding: var(--space-3xl) 0;
  }

  .divider {
    margin-bottom: var(--space-2xl);
  }

  .main-content-section {
    padding: var(--space-2xl) 0;
  }
}

.top-section {
  padding: 1.5rem 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.text-table-layout {
   display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .secondary-hero-combined {
    padding-top: 40px;
  }

  .secondary-hero-content-section {
    padding: 0 20px;
  }

  .secondary-hero-title {
    font-size: 2.1rem;
  }

  .secondary-hero-subtitle {
    font-size: 20px;
  }

  .secondary-hero-image-section {
    height: 300px;
  }

  .color-bar {
    padding: 60px 20px;
  }

  .color-bar-text-main {
    font-size: 1.3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }


  .stat-number {
    font-size: 2rem;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .company-description {
    padding: var(--space-2xl) var(--container-padding);
    border-radius: 8px;
    margin-top: var(--space-3xl);
  }

  .company-description::before {
    background-position: center top;
    background-size: cover;
    filter: brightness(65%);
  }

  .company-description p {
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    margin-top: 0.5rem;
    max-width: 90%;
  }

  .company-description p:first-child {
    margin-top: var(--space-xs);
  }

  .company-description p:last-child {
    margin-bottom: 0;
  }


  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .stats-section {
    padding: var(--space-2xl) 0;
  }

  .main-content-section {
    padding: var(--space-xl) 0;
  }

  .top-section {
    padding: 1.5rem 1.5rem;
  }
	
	
}

@media (max-width: 500px) {
  .stats-section {
    padding: var(--space-xl) 0;
  }
  
  .section-title {
  /*  font-size: 1.8rem; */
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: 0 0px;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }

  .header.scrolled .header-container {
    padding: 0 20px;
    border-radius: 8px;
    margin-top: 0.7em !important;
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }

  .secondary-hero-wrapper {
	  padding: 0 !important;
  }

  .secondary-hero-content-section {
    padding: 0 15px;
  }

  .secondary-hero-title {
    font-size: 1.6rem;
  }

  .secondary-hero-subtitle {
    font-size: 18px;
  }

  .secondary-hero-image-section {
    height: 250px;
  }

  .secondary-contact-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .color-bar {
    padding: 60px 15px;
  }

  .color-bar-text-main {
    font-size: 1.2rem;
  }

  .color-bar-text-secondary {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }


  .stat-number {
    font-size: 1.75rem;
  }

  .stat-text {
    font-size: 0.9rem;
  }

  .content-container {
    padding: 1.5rem 0.5rem;
  }

  .content-left h2,
  .content-right h2 {
/*    font-size: 1.5rem; */
  }

  .content-left p,
  .content-right p {
 /*   font-size: 0.9rem; */
  }

  .metric-number {
    font-size: 2rem;
  }

  .metric-text {
    font-size: 0.85rem;
  }

  .chart-box canvas {
    max-height: 280px;
  }

  .top-section {
    padding: 1.5rem 0.5rem;
  }

  .text-column h2 {
   /* font-size: 1.5rem; */
  }

  .quote-box {
    padding: var(--space-lg) var(--container-padding);
  }

  .quote-text {
    font-size: 1rem;
  }

  .quote-author {
    font-size: 0.9rem;
  }

  .main-content-section {
    padding: var(--space-lg) 0;
  }

  .stats-section {
    padding: var(--space-xl) 0;
  }

}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* When modal is just open (not using .show class) */
.modal[style*="display: block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #86868b;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    transition: color 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #1d1d1f;
}

/* Form Title - applies to both modal and page forms */
.modal .form-title,
#contactFormModal .form-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 30px 0;
    color: #006995;
    text-align: center;
}

/* Form styling - applies to modal form */
#contactFormModal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#contactFormModal .form-item {
    margin-bottom: 20px;
}

#contactFormModal .form-item label {
    display: none;
}

#contactFormModal .form-item input[type="text"],
#contactFormModal .form-item input[type="email"],
#contactFormModal .form-item input[type="tel"],
#contactFormModal .form-item select,
#contactFormModal .form-item textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    min-height: 52px;
}

#contactFormModal .form-item textarea {
    min-height: 120px;
    resize: vertical;
}

#contactFormModal .form-item input:focus,
#contactFormModal .form-item select:focus,
#contactFormModal .form-item textarea:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

#contactFormModal .form-item input::placeholder,
#contactFormModal .form-item textarea::placeholder {
    color: #86868b;
}

#contactFormModal .form-item select {
    color: #86868b;
    cursor: pointer;
}

#contactFormModal .form-item select.has-value {
    color: #1d1d1f;
}

#contactFormModal .form-actions {
    margin-top: 30px;
}

#contactFormModal input[type="submit"] {
    width: 100%;
    padding: 16px 20px;
    background-color: #006995;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    min-height: 52px;
}

#contactFormModal input[type="submit"]:hover {
    background-color: #0093D1;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 105, 149, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal .form-title,
    #contactFormModal .form-title {
        font-size: 24px;
    }
    
    #contactFormModal .form-row {
        grid-template-columns: 1fr;
        gap: 0px;
		margin-bottom: 0px;
    }
}


.features li:before {
    content: '•';
    left: 0;
    color: #006995;
    font-weight: bold;
    margin-right: 1em;
}

/* Old line chart code */
#comparisonChart {
  max-width: 100%;
  height: 450px;
}

@media (max-width: 768px) {
  #comparisonChart {
    height: 600px;
  }
}

@media (max-width: 480px) {
 .chart-box {
  padding: none;
	}
}

.chart-box {
  border-radius: 8px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%; 
}

.chart-box canvas {
  width: 100% !important;
  height: auto !important;
  max-height: 420px;
  max-width: 100%;
}




/* Mobile/Tablet Styles - Text Stacked (below 768px) */
@media (max-width: 767px) {
	
		  .text-table-layout {
    grid-template-columns: 1fr;
  }
}

.text-column h2 {
  color: #006995;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  padding-top: var(--space-md);
}

.text-column ul {
  margin-bottom: var(--space-md);
}

.text-column p {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  color: #555;
}

.text-column em {
  font-style: italic;
  color: #444;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Montserrat', sans-serif;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e6e6e6;
}

.comparison-table thead th {
  background-color: #f3f6f4;
  color: #333;
  text-align: left;
  font-weight: 600;
  padding: 14px 16px;
  font-size: 0.9rem;
  border-bottom: 2px solid #e0e0e0;
}

.comparison-table thead th:first-child {
  border-top-left-radius: 8px;
}

.comparison-table thead th:last-child {
  border-top-right-radius: 8px;
}

.comparison-table tbody td {
  padding: 14px 16px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  line-height: 1.5;
  vertical-align: top;
}

.comparison-table tbody td strong {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.comparison-table tbody tr:nth-child(even) {
  background: #fbfcfb;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.comparison-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}


/* Savings section */
.savings-container {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  height: fit-content;
}

h4.green-header {
  color: #555555 !important;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  margin-top: 0;
}

.savings-item {
  display: flex;
  flex-direction: column;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid #e0e0e0;
}

.savings-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.savings-item:first-child {
  padding-top: 0;
}

.savings-number {
  font-size: 2rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.caret-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0;
  margin-top: -4px;
}

.caret-stack .caret-icon {
  margin: -6px 0;
}

.savings-number .caret-icon {
  font-size: 1.2rem;
  opacity: 1;
}

.savings-number .caret-icon.green {
  color: #78b996;
}

.savings-number .caret-icon.red {
  color: #dc3545;
}

.savings-number .caret-icon.animate-up {
  animation: pulseUp 0.6s ease-in-out 2;
}

.savings-number .caret-icon.animate-down {
  animation: pulseDown 0.6s ease-in-out 2;
}

@keyframes pulseUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.savings-text {
  color: #555;
}

.savings-item:nth-child(1) .savings-number {
  animation-delay: 0s;
}

.savings-item:nth-child(2) .savings-number {
  animation-delay: 0.15s;
}

.savings-item:nth-child(3) .savings-number {
  animation-delay: 0.3s;
}

.savings-item:nth-child(4) .savings-number {
  animation-delay: 0.45s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
