<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*------------------------------------*\
    
    WebFX WYSIWYG Customizations - Global styling for all ACF WYSIWYG's

    Add custom WYSIWYG styling to this file if it should be applied to all ACF WYSIWYG's on the site
    Otherwise, put your block-specific styles in individual block stylesheets

\*------------------------------------*/

.wysiwyg { 
    position: relative;
    color: #444444;
}

.bg-white {
    background: #ffffff;
}

.bg-light-grey {
    background: #F7F8F9;
}

.wysiwyg__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125px;
    object-fit: cover;
}

.bg-background__wrap {
    position: relative;
    z-index: 1;
    background: rgba(247, 248, 249, 0.75);
}

.wysiwyg__bg,
.bg-background__wrap::before {
    height: 100%;
}

.bg-background__wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom,  rgba(247,248,249,0) 0%,rgba(247,248,249,0.65) 50%,rgba(247,248,249,1) 100%);
    width: 100%;
    z-index: -1;
}

.bg-background--white-overlay .bg-background__wrap {
    background: rgba(255, 255, 255, 0.75);
}

.bg-background--white-overlay .bg-background__wrap::before {
    background: linear-gradient(to bottom,  rgba(255, 255, 255,0) 0%,rgba(255, 255, 255,0.65) 50%,rgba(255, 255, 255,1) 100%);
}

.btn-red-border {
    border: 2px solid #8C1A20;
    background: none;
    color: #8C1A20;
    padding: 12px 16px;
    transition: all 300ms ease-in-out;
}

.btn-red-border:hover{
    color: white;
}

.btn-black-border {
    border: 2px solid #202020;
    background: none;
    color: #202020;
    padding: 12px 16px;
    transition: all 300ms ease-in-out;
}

.btn-black-border:hover{
    color: white;
    background: #202020;
}


@media (min-width: 768px) {
    .wysiwyg__wrapper {
        padding: 0 26px;
    }

   h4.padding-top {
    padding-top: 25px;
   }


    .btn-red-border,
    .btn-black-border{
        padding: 12px 30px;
    }

}

@media (min-width: 1200px) {
    .wysiwyg__wrapper {
        padding: 0 0;
    }

    .example-btn {
        margin-top: 25px;
    }

    .bg-background.bg-background--white-overlay .bg-background__wrap {
        padding: 110px 0 130px;
    }

    h4.padding-top {
        padding-top: 40px;
    }

    .example-btn br {
        display: none;
    }

    .example-btn2 .btn-tertiary {
        margin-left: 30px;
    }

}

.wysiwyg__bg--sm,
.bg-background__wrap--1::before {
    height: 378px;
}


/* table */

table {
    border-collapse: collapse;
    width: 1098px;
    overflow: hidden;
    border: 1px solid #EAEAEA;
    position: relative;
    margin-top: 40px;
    margin-bottom: 30px;
    max-width: 100%;
}

table::before {
    content: "";
    position: absolute;
    right: -22px;
    top: 0;
    width: 160px;
    height: 100%;
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    z-index: 1;
}

table thead,
table tr th {
    background-color: #B2081B!important;
    color: #ffffff!important;
}

table thead tr th,
table tr th {
    padding: 15px 27px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    border: none;
    color: #FFFFFF;
    text-transform: uppercase;
}

table tbody tr {
    background-color: #fff;
}

table tbody tr:nth-child(odd) {
    background-color: #EAEAEA;
}

table tbody tr th {
    background-color: #E6E6E6;
}

table tbody tr td,
table tbody tr th {
    padding: 17px 27px;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    color: #444444;
    line-height: 1.2em;
    vertical-align: top;
}

.table-scroll {
    scrollbar-width: thin;
    scrollbar-color: #A8A8A8 #E8E8E8;
    position: relative;
    padding-bottom: 20px;
    overflow-x: auto;
    margin-bottom: 20px;
    margin-right: -22px;
}

.table-scroll::-webkit-scrollbar {
    width: 15px;
    height: 5px;
    padding-bottom: 30px;
}

.table-scroll::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 15px solid #E8E8E8;
}

.table-scroll::-webkit-scrollbar-thumb {
    background-color: #A8A8A8;
}

.table-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #A8A8A8;
}

.table-scroll::-webkit-scrollbar-corner, 
.table-scroll::-webkit-scrollbar-track {
    background-color: #A8A8A8;
}

@media (min-width: 768px) {
    .table-scroll {
        margin-right: -78px;
    }
    
    table::before {
        right: -78px;
    }
}

@media (min-width: 1200px) {

    table::before {
        display: none;
    }

    .table-scroll {
        padding-bottom: 0;
        margin-bottom: 20px;
        margin-right: 0px;
        overflow: visible;
    }
 
}


.hard-top{
    padding-top: 0;
    padding-bottom: var(--section-margins);
}


@media(max-width:767px){
  .wp-image-29110{
    width : 100% !important ;
  }
}</pre></body></html>