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

section.faq {
    background-color: #f8f8f8;
    padding: 120px 0;
}

section.faq .heading h2 {
    margin: 0 0 clamp( 30px, 3.177vw, 61px );
    color: #2A2A2C;
}

section.faq .faq-item {
    margin: 0;
    border-radius: 0px;
    background-color: #f8f8f8;
    /* box-shadow: 0px 10px 20px #0000001A; */
    transition: all .75s ease;
    border-bottom: 2px solid rgb(48, 48, 48, 0.15)
}

.faq-holder .faq-item:first-of-type .accordion {
    padding-top: 0px;
}

.faq-holder .faq-item:last-of-type .accordion {
    padding-bottom: 0px;
}

.faq-holder .faq-item:last-of-type {
    border-bottom: none;
}

.faq-item .accordion {
    position: relative;
    background-color: #F8F8F8;
    color: #0F3A4E;
    border-radius: 0;
    padding: clamp( 12px, 1.25vw, 24px ) clamp( 32px, 2.083vw, 40px ) clamp(13px, 1.354vw, 26px);
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.faq-item .accordion.active {
    border-radius: 40px 40px 20px 20px;
}

.faq-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    text-transform: none;
    font-size: clamp(16px, 0.938vw, 18px);
    margin-bottom: 0;
}

.faq-item .panel.show {
    padding: 20px;
    transition: all .75s ease;
}

.faq-item .panel a {
    text-decoration: underline;
}

.faq-item .answer li {
    margin-bottom: 10px;
}

.faq-item .accordion::after {
    position: absolute;
    content: '\f067';
    font-family: 'Font Awesome 5 Free', fantasy;
    font-weight: 900;
    width: 26px;
    right: clamp( 16px, 1.250vw, 24px );
    top: 50%;
    transform: translateY(-50%);
    /* margin: -7px 0 1px; */
    font-size: 26px;
    display: inline-block;
    color: #303030;
}

.faq-item .accordion.active::after {
    content: '\f068';
}</pre></body></html>