<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Spacing */

.section-space {
    padding-top: var(--section-space);
}

.section-b-space {
    padding-bottom: var(--section-space);
}

/* colors */

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-dark {
    background-color: var(--black-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.bg-light-grey {
    background-color: var(--light-grey) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-black {
    color: var(--black-color) !important;
}

.text-blue{
    color:var(--blue-color) !important;
}

.text-info {
    color: var(--info-color) !important;
}

.text-grey {
    color: var(--grey-color);
}

.text-dark {
    color: var(--text-dark) !important;
}

.bg-light {
    background-color: rgba(1, 34, 105, .1) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.border-blue{
    border-color: var(--blue-color) !important;
}

.small, small {
    font-size: 15px;
}

.bg-info{
    background-color: var(--info-color) !important;
}


/* font-family */

.font-bricolage {
    font-family: "Bricolage Grotesque", serif;
}

.font-poppins {
    font-family: "Poppins", sans-serif;
}

/* Font-weight */

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

/* Extra-css */

.z-99 {
    z-index: 99;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

p {
    font-size: var(--section-paragraph);
    color: #3A3A3A;
    font-weight: 600;
}

/* Spacing */

.section-smallspace {
    padding-top: var(--section-smallspace);
}

.section-bottom-smallspace {
    padding-bottom: var(--section-smallspace);
}

.section-space {
    padding-top: var(--section-space) !important;
}

.section-bottom-space {
    padding-bottom: var(--section-space);
}

.margin-space {
    margin-top: var(--section-space);
}

.margin-top-smallspace {
    margin-top: var(--section-smallspace);
}

.margin-bottom-smallspace {
    margin-bottom: var(--section-smallspace);
}

.margin-bottom-space {
    margin-bottom: var(--section-space);
}

/* section-title-css */

.section-herotitle {
    font-size: var(--section-herotitle);
}

.section-h1 {
    font-size: var(--section-h1);
}

.section-h2 {
    font-size: var(--section-h2);
}

.section-h3 {
    font-size: var(--section-h3);
}

.section-h4 {
    font-size: var(--section-h4);
}

.section-h5 {
    font-size: var(--section-h5);
}

.section-h6 {
    font-size: var(--section-h6);
}


/* Button-css */

.primary_btn {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    padding: 10px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.primary_btn:hover {
    background-color: var(--primary-color);
}

.secondary_btn {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    padding: 10px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    border: 2px solid transparent;
    animation: borderPulse 1.5s infinite ease-in-out;
}

@keyframes borderPulse {
    0%, 100% {
        border-color: transparent;
    }
    50% {
        border-color: #0f5132;
    }
}

</pre></body></html>