

:root {
    --primary-color: #002871;
    --secondary-color: #c69f46;
   
    --border-color: #e2e8f0;
    --font-family: 'Poppins', sans-serif;
}
.blue{
    color: #002871;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Semibold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
} */


/*faq*/
 .faq-body {
  transition: all 0.3s ease;
}
.faq-item.active .faq-body {
  display: block;
}
.faq-item.active .arrow {
  transform: rotate(180deg);
}

