/*
* Default Styles
*/
* {
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    ::-webkit-scrollbar {
        background: var(--charitian-bg-dark);
        width: 8px;
        height: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--charitian-primary-color);
        cursor: pointer;
    }
}

::selection {
    background-color: var(--charitian-primary-color);
    color: var(--charitian-white-color);
}

::-moz-selection {
    background-color: var(--charitian-primary-color);
    color: var(--charitian-white-color);
}

html.js {
    font-size: 14px;
    margin-top: 0 !important
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Common */
a {
    text-decoration: none;
}

a:hover {
    color: #ffc105;
}

a:hover,
a:focus {
    text-decoration: none;
}

.row.m0 {
    margin: 0px;
}

.p0 {
    padding: 0px;
}

.bg_color {
    background: #fbfbfd;
}

.dk_bg_one {
    background: #090a21;
}

.dk_bg_two {
    background: #0f1029;
}

.seo_title_color {
    color: #263b5e;
}

.mt_60 {
    margin-top: 60px;
}

.mt_30 {
    margin-top: 30px;
}

.mt_40 {
    margin-top: 40px;
}

.mt_70 {
    margin-top: 70px;
}

.mt_75 {
    margin-top: 75px;
}

.mt_100 {
    margin-top: 100px;
}

.mt_130 {
    margin-top: 130px;
}

.mb_70 {
    margin-bottom: 70px;
}

.mb_20 {
    margin-bottom: 20px;
}

.mb_15 {
    margin-bottom: 15px;
}

.mb_30 {
    margin-bottom: -30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb_40 {
    margin-bottom: 40px;
}

.mb_50 {
    margin-bottom: 50px;
}

.mb-50 {
    margin-bottom: -50px;
}

.mb_60 {
    margin-bottom: 60px;
}

.mb_90 {
    margin-bottom: 90px;
}

.pl_20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pl_40 {
    padding-left: 40px;
}

.pl_50 {
    padding-left: 50px;
}

.pl_100 {
    padding-left: 100px;
}

.pl_70 {
    padding-left: 70px;
}

.pl_120 {
    padding-left: 120px;
}

.pr_100 {
    padding-right: 100px;
}

.pr_120 {
    padding-right: 120px;
}

.pr_70 {
    padding-right: 70px;
}

.pr_50 {
    padding-right: 50px;
}

.pr_20 {
    padding-right: 20px;
}

.pt_150 {
    padding-top: 150px;
}

.pt_120 {
    padding-top: 40px;
}

.sec_pad {
    padding: 100px 0px;
}

.padding-15 {
    padding: 15px;
}

@media (max-width: 768) {
    .sec_pad {
        padding: 80px 0px;
    }
}

/* ==========================================================================
   Alignments
   ========================================================================== */
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 20px auto 20px auto !important;
}

.alignnone {
    margin: 5px 20px 20px 0;
}

.gallery-caption,
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 100%;
    padding: 10px;
    text-align: center;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: 100%;
}

/* ==========================================================================
   Clearings
   ========================================================================== */
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.entry-footer:before,
.entry-footer:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.nav-links:before,
.nav-links:after,
.pagination:before,
.pagination:after,
.comment-author:before,
.comment-author:after,
.widget-area:before,
.widget-area:after,
.widget:before,
.widget:after,
.comment-meta:before,
.comment-meta:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.entry-footer:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.nav-links:after,
.pagination:after,
.comment-author:after,
.widget-area:after,
.widget:after,
.comment-meta:after {
    clear: both;
}

/* ==========================================================================
   Typography
   ========================================================================== */
body {
    background: var(--charitian-white-color);
    font-family: var(--charitian-base-font);
    color: var(--charitian-base-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.2px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font-family: var(--charitian-base-font);
    color: var(--charitian-base-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--charitian-primary-font);
    color: var(--charitian-heading-color);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px
}

h5 {
    font-size: 20px
}

.single-post h1,
.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post h6 {
    margin-bottom: 15px;
    letter-spacing: -1px;
    font-weight: 700;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.2
    }

    h1 {
        font-size: 34px
    }

    h2 {
        font-size: 30px
    }

    h3 {
        font-size: 26px
    }

    h4 {
        font-size: 22px
    }

    h5 {
        font-size: 17px
    }

    h6 {
        font-size: 13px
    }
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0
}

dfn,
cite,
em,
i {
    font-style: italic;
}

address {
    margin: 0 0 1.5em;
    color: var(--charitian-base-color);
}

pre {
    background-color: var(--charitian-light-grey-color);
    color: var(--charitian-base-color) !important;
    font-size: 16px;
    overflow: visible;
    overflow-y: hidden;
    display: block;
    line-height: 26px;
    padding: 20px;
    margin: 15px 0;
    border: none;
    border-radius: 5px;
    white-space: pre-wrap;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 14px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted var(--charitian-light-grey-color);
    cursor: help;
}

mark,
ins {
    text-decoration: none;
}

big {
    font-size: 125%;
}

blockquote {
    quotes: """";
}

q {
    quotes: "“""”""‘""’";
}

:focus {
    outline: none;
}


/* ==========================================================================
   Forms
   ========================================================================== */
label {
    color: var(--charitian-base-color);
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}

fieldset {
    margin-bottom: 15px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    background: var(--charitian-white-color);
    color: var(--charitian-base-color);
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    border: 1px solid var(--charitian-light-grey-color);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: block;
    padding: 10px;
    width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: var(--charitian-base-color);
    border-color: var(--charitian-primary-colorcolor);
}

select {
    border: 1px solid var(--charitian-light-grey-color);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: 50px;
    max-width: 100%;
}

input[type="radio"],
input[type="checkbox"] {
    margin-right: 10px;
    position: relative;
}

input[type="radio"]+label,
input[type="checkbox"]+label {
    font-weight: 400;
}

button,
input[type="button"],
input[type="submit"] {
    background-color: var(--charitian-primary-color);
    color: var(--charitian-heading-color);
    font-family: var(--charitian-primary-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    border: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    padding: 20px 15px;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
    text-transform: uppercase;
}

input+button,
input+input[type="button"],
input+input[type="submit"] {
    padding: 10px 30px;
}

input[type="submit"] {
    -webkit-border-radius: 0;
    border-radius: 0;
}

button.secondary,
input[type="reset"],
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
    background-color: var(--charitian-light-grey-color);
    color: var(--charitian-base-color);
}

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
    opacity: 1;
}

button.secondary:hover,
button.secondary:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"].secondary:hover,
input[type="button"].secondary:focus,
input[type="reset"].secondary:hover,
input[type="reset"].secondary:focus,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:focus {
    background: #bbb;
}

input[type='radio'] {
    width: 20px !important;
    height: 20px !important;
    min-height: 20px !important;
    min-width: 20px !important;
    border: 1px solid var(--charitian-light-grey-color) !important;
    border-radius: 2px !important;
    position: relative;
}

input[type='radio']:focus,
input[type='radio']:checked {
    border: 1px solid var(--charitian-primary-color) !important;
    outline: none !important;
}

input[type='radio']:focus {
    outline: none !important;
}

input[type='radio']:before {
    display: none !important;
}

input[type='radio']:after {
    background-color: var(--charitian-white-color);
    border: 1px solid var(--charitian-light-grey-color);
    width: 12px !important;
    height: 12px !important;
    border-radius: 2px;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
    position: absolute;
    content: '';
    display: inline-block;
    visibility: visible;
    cursor: pointer;
}

input[type='radio']:checked:after {
    background-color: var(--charitian-primary-color);
    border: 1px solid var(--charitian-primary-color);
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
    color: var(--charitian-base-color);
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

:-moz-placeholder {
    color: var(--charitian-base-color);
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

::-moz-placeholder {
    color: var(--charitian-base-color);
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
    opacity: 1;
    /* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
    color: var(--charitian-base-color);
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

/* ==========================================================================
   Formatting
   ========================================================================== */
hr {
    background-color: var(--charitian-light-grey-color);
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

/* ==========================================================================
   Lists
   ========================================================================== */
address,
dl,
ol,
p,
ul {
    margin-bottom: 20px;
    font-family: var(--charitian-base-font);
}

ul,
ol {
    margin: 0 0 15px;
    padding-left: 20px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 25px;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 25px 25px;
}

/* ==========================================================================
   Tables
   ========================================================================== */
table {
    border-collapse: collapse;
    margin: 0 0 25px;
    width: 100%;
    border: 1px solid var(--charitian-light-grey-color);
}

.comment-content table {
    border-left: 1px solid var(--charitian-light-grey-color);
}

.comment-content tr:first-child th,
thead th {
    border: 1px solid var(--charitian-light-grey-color);
    padding: 10px 15px;
}

table th a {
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
}

table th a:hover {
    opacity: 0.9;
}

th {
    border: 1px solid var(--charitian-light-grey-color);
    text-transform: uppercase;
    text-align: left;
    font-weight: 600;
    padding: 10px 15px;
    font-size: 14px;
    letter-spacing: 1px;
}

tr {
    border-bottom: 1px solid var(--charitian-light-grey-color);
}

td {
    padding: 20px;
    border-right: 1px solid var(--charitian-light-grey-color);
}

td a {
    text-decoration: none;
}

th:first-child,
td:first-child {
    border-left: 1px solid var(--charitian-light-grey-color);
}

/* ==========================================================================
   Links
   ========================================================================== */
a,
a:hover,
a:focus {
    color: var(--charitian-base-color);
    outline: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    text-decoration: none
}

a:focus {
    outline: none;
}

a:hover,
a:active {
    color: var(--charitian-heading-color);
    outline: 0;
}

.entry-title a,
.entry-meta a,
.page-links a,
.page-links a .page-number,
.entry-footer a,
.entry-footer .cat-links a,
.entry-footer .tags-links a,
.edit-link a,
.post-navigation a,
.logged-in-as a,
.comment-navigation a,
.comment-metadata a,
.comment-metadata a.comment-edit-link,
.comment-reply-link,
a .nav-title,
.pagination a,
.comments-pagination a,
.site-info a,
.widget .widget-title a,
.widget ul li a,
.site-footer .widget-area ul li a,
.site-footer .widget-area ul li a {
    -webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 1);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 1);
    text-decoration: none;
    -webkit-transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
    transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
    transition: color 80ms ease-in, box-shadow 130ms ease-in-out;
    transition: color 80ms ease-in, box-shadow 130ms ease-in-out, -webkit-box-shadow 130ms ease-in-out;
}

.entry-content a:focus,
.entry-content a:hover,
.entry-summary a:focus,
.entry-summary a:hover,
.widget a:focus,
.widget a:hover,
.site-footer .widget-area a:focus,
.site-footer .widget-area a:hover,
.posts-navigation a:focus,
.posts-navigation a:hover,
.comment-metadata a:focus,
.comment-metadata a:hover,
.comment-metadata a.comment-edit-link:focus,
.comment-metadata a.comment-edit-link:hover,
.comment-reply-link:focus,
.comment-reply-link:hover,
.widget_authors a:focus strong,
.widget_authors a:hover strong,
.entry-title a:focus,
.entry-title a:hover,
.entry-meta a:focus,
.entry-meta a:hover,
.page-links a:focus .page-number,
.page-links a:hover .page-number,
.entry-footer a:focus,
.entry-footer a:hover,
.entry-footer .cat-links a:focus,
.entry-footer .cat-links a:hover,
.entry-footer .tags-links a:focus,
.entry-footer .tags-links a:hover,
.post-navigation a:focus,
.post-navigation a:hover,
.pagination a:not(.prev):not(.next):focus,
.pagination a:not(.prev):not(.next):hover,
.comments-pagination a:not(.prev):not(.next):focus,
.comments-pagination a:not(.prev):not(.next):hover,
.logged-in-as a:focus,
.logged-in-as a:hover,
a:focus .nav-title,
a:hover .nav-title,
.edit-link a:focus,
.edit-link a:hover,
.site-info a:focus,
.site-info a:hover,
.widget .widget-title a:focus,
.widget .widget-title a:hover,
.widget ul li a:focus,
.widget ul li a:hover {
    color: var(--charitian-base-color);
}

/* Fixes linked images */
.post-navigation a:focus .icon,
.post-navigation a:hover .icon {
    color: var(--charitian-heading-color)
}

/* WordPress Gallery */
.gallery {
    margin: 20px -5px;
}

.gallery .gallery-item {
    display: inline-block;
    padding: 5px;
    margin: 0;
}

.gallery .gallery-item img {
    max-width: 100%;
    box-shadow: none;
}

.widget-comp-contact {
    list-style: none !important;
}

/* Columns */
.wt-row {
    display: block;
    margin: 0 -10px;
}

.wt-row .wt-col {
    float: left;
    display: block;
    padding: 0 10px;
}

.wt-row.wt-column-desktop-1 .wt-col {
    width: 100%;
}

.wt-row.wt-column-desktop-2 .wt-col {
    width: 50%;
}

.wt-row.wt-column-desktop-3 .wt-col {
    width: 33.33%;
}

.wt-row.wt-column-desktop-4 .wt-col {
    width: 25%;
}

.wt-row.wt-column-desktop-5 .wt-col {
    width: 20%;
}

.wt-row.wt-column-desktop-6 .wt-col {
    width: 16.66%;
}

@media (max-width: 992px) {
    .wt-row.wt-column-tablet-1 .wt-col {
        width: 100%;
    }

    .wt-row.wt-column-tablet-2 .wt-col {
        width: 50%;
    }

    .wt-row.wt-column-tablet-3 .wt-col {
        width: 33.33%;
    }

    .wt-row.wt-column-tablet-4 .wt-col {
        width: 25%;
    }

    .wt-row.wt-column-tablet-5 .wt-col {
        width: 20%;
    }

    .wt-row.wt-column-tablet-6 .wt-col {
        width: 16.66%;
    }
}

@media (max-width: 480px) {
    .wt-row.wt-column-mobile-1 .wt-col {
        width: 100%;
    }

    .wt-row.wt-column-mobile-2 .wt-col {
        width: 50%;
    }

    .wt-row.wt-column-mobile-3 .wt-col {
        width: 33.33%;
    }

    .wt-row.wt-column-mobile-4 .wt-col {
        width: 25%;
    }

    .wt-row.wt-column-mobile-5 .wt-col {
        width: 20%;
    }

    .wt-row.wt-column-mobile-6 .wt-col {
        width: 16.66%;
    }
}

/* Masonry Grid */
.masonry-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.m-col-3 .m-col,
.masonry-grid .m-col {
    flex: 0 0 auto;
    width: calc(100% / 3);
    padding: 15px;
}

.m-col-4 .m-col {
    width: calc(100% / 4);
}

.m-col-2 .m-col {
    width: calc(100% / 2);
}

.m-col-1 .m-col {
    width: 100%;
}

@media (max-width: 1200px) {

    .m-col-4 .m-col,
    .m-col-3 .m-col,
    .masonry-grid .m-col {
        width: calc(100% / 3);
    }

    .m-col-2 .m-col {
        width: calc(100% / 2);
    }

    .m-col-1 .m-col {
        width: 100%;
    }
}

@media (max-width: 992px) {

    .m-col-4 .m-col,
    .m-col-3 .m-col,
    .m-col-2 .m-col,
    .masonry-grid .m-col {
        width: calc(100% / 2);
    }
}

@media (max-width: 768px) {

    .m-col-4 .m-col,
    .m-col-3 .m-col,
    .m-col-2 .m-col,
    .m-col-1 .m-col,
    .masonry-grid .m-col {
        width: 100%;
    }
}

@media (min-width: 480px) {
    form[id*=give-form] #give-gateway-radio-list>li {
        display: inline-flex;
        margin-right: 20px;
        align-items: center;
        column-gap: 6px;
    }
}