/* Header */
.site-header {
    background-color: var(--white);
    position: fixed;
    width: 100%;
    z-index: 99;
}

.header-container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    transition: all .4s linear;
}

.sticky {
    box-shadow: 0 0 10px #0000001f;
}

.sticky .header-container {
    padding: 10px 20px !important;
}

.main-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.main-navigation {
    display: flex;
    justify-content: end;
    align-items: center;
}

.main-navigation ul {
    gap: 2px;
    align-items: center;
}

.main-navigation #primary-menu>li {
    padding: 10px 15px;
}

.main-navigation #primary-menu>li:last-child {
    padding-right: 0;
}

.menu-btn a {
    display: block;
    background-color: var(--dark-green);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 50px;
}

.header-adjust {
    height: 129px;
}

.menu-arrow {
    display: none;
}

/* Toggle menu */
#main-header .toggle-menu {
    display: none;
}

.toggle-menu-inner {
    cursor: pointer;
    padding: 6px 3px;
    display: grid;
    gap: 6px;
    width: fit-content;
}

.toggle-menu-inner span {
    width: 30px;
    height: 2px;
    display: block;
    background: var(--dark-green);
    transition: transform .4s linear;
}

/* Animate to "X" */
.toggle-menu.active .toggle-menu-inner span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.toggle-menu.active .toggle-menu-inner span:nth-child(2) {
    opacity: 0;
}

.toggle-menu.active .toggle-menu-inner span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* header Submenu  */
#primary-menu .sub-menu {
    min-width: 280px;
    width: 100%;
    flex-direction: column;
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
}

#primary-menu .sub-menu li {
    padding: 10px 15px;
}







/* common */
.wrapper {
    max-width: 1350px;
    position: relative;
    margin: 0 auto;
}

.btn-w-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.16px;
    text-transform: uppercase;
}

.sub-heading-label {
    background-color: #47B260;
    padding: 5px 12px;
    color: #fff;
    letter-spacing: 1.12px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    font-family: "Gabarito", sans-serif;
    text-transform: uppercase;
}

.sub-heading-label.bg-green {
    background-color: var(--green);
}

.sub-heading-label.bg-mosque-green {
    background-color: var(--mosque-green);
}

.sub-heading-label.bg-mid-night-green {
    background-color: var(--mid-night-green);
}

.sub-heading-label.bg-yellow {
    background-color: var(--yellow);
}

.sub-heading-label.bg-black {
    background-color: var(--black);
}

.sub-heading-label.bg-honeydrew {
    background-color: var(--honeydrew);
}

.sub-heading-label.bg-light-green {
    background-color: var(--light-green);
}

.sub-heading-label.bg-dark-green {
    background-color: var(--dark-green);
}


.highlighted {
    position: relative;
    display: block;
    float: left;
    clear: both;
}

.highlighted::after {
    content: "";
    width: 105%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #FFAD1A;
    height: 12px;
    z-index: -1;
}

h1 span[style*='text-decoration'],
h2 span[style*='text-decoration'],
h3 span[style*='text-decoration'],
h4 span[style*='text-decoration'],
h5 span[style*='text-decoration'],
h6 span[style*='text-decoration'],
h1[style*='text-decoration'],
h2[style*='text-decoration'],
h3[style*='text-decoration'],
h4[style*='text-decoration'],
h5[style*='text-decoration'],
h6[style*='text-decoration'] {
    text-decoration-skip-ink: none;
    position: relative;
    text-decoration-color: #FFAD1A !important;
    text-decoration-thickness: 12px !important;
    text-underline-offset: -5px !important;
}




.bg-light-green {
    background-color: #F2FFE5;
}

.bg-green {
    background-color: #46B25F;
}

.bg-dark-green {
    background-color: #0B4746;
}

.itb__description p:last-child {
    margin-bottom: 0;
}

.itb__description p:first-child {
    margin-top: 0;
}

.bg-green,
.bg-dark-green {
    color: #ffffff;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Hero banner
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__hero-banner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 100px 60px;
    border-radius: 32px;
    min-height: 694px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.section__hero-banner video {
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 32px;
    pointer-events: none;
}

.section__hero-banner.content-align-left {
    align-items: flex-start;
}

.section__hero-banner.content-align-center {
    min-height: 688px;
    margin-bottom: 7rem;
    border-radius: 16px;
}

.section__hero-banner.content-align-left .wrapper {
    margin-left: 0;
}

.section__hero-banner.content-align-center {
    align-items: center;
    text-align: center;
}

.section__hero-banner.content-align-left .hero-banner__content {
    max-width: 500px;
}

.section__hero-banner.content-align-left h1.hero-banner__heading {
    color: #ffffff;
    font-size: 79px;
    line-height: 1;
    letter-spacing: -0.8px;
}

.section__hero-banner.content-align-center h1.hero-banner__heading {
    color: var(--light-green);
    font-size: 120px;
    line-height: 1;
    letter-spacing: 0;
}

.section__hero-banner.content-align-left .hero-banner__description {
    color: #fff;
    font-size: 21px;
    line-height: 150%;
    max-width: 450px;
    letter-spacing: -0.4px;
}

.section__hero-banner.content-align-left .hero-banner__description p {
    margin: 30px 0;
}

.section__hero-banner.content-align-center .hero-banner__description {
    color: #fff;
    font-size: 21px;
    font-weight: 400;
    max-width: 485px;
    line-height: 1.51;
    margin: 0 auto;
}

.section__hero-banner.content-align-left .btn {
    background-color: #ffffff;
    color: var(--dark-green);
}





/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Module: Grid icon box
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.section__grid-icon-box {
    margin: 7rem 30px;
}

.section__grid-icon-box.has-background,
.section__grid-icon-box.has-bg-color {
    margin: 7rem 0;
}

.section__grid-icon-box .wrapper {
    max-width: 1232px;
}

.grid-icon-box__header h2 {
    margin: 25px 0 40px 0;
}

.grid-icon-box__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-icon-box__items .grid-icon-box__item {
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    justify-content: space-between;
}

.grid-icon-box__items .grid-icon-box__item>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    justify-content: space-between;
}

.grid-icon-box__items .grid-icon-box__item>div img {
    max-width: 45px;
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.grid-icon-box__items .grid-icon-box__item h4 {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    /* max-width: 88%; */

}

.grid-icon-box__items.box-in-row-4 .grid-icon-box__item h4 {
    color: var(--mosque-green);
}

.section__grid-icon-box.has-column-4 .desc {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--mosque-green);
}

.grid-icon-box__items.box-in-row-4 .grid-icon-box__item .btn {
    font-size: 11px;
    text-transform: uppercase;
    padding: 9px 8px;
    background-color: var(--mosque-green);
    color: var(--light-green);
}

/* Grid Icon Box for three Col */
.grid-icon-box__items.box-in-row-3 h2 {
    color: var(--mosque-green);
}

.grid-icon-box__items.box-in-row-3 .grid-icon-box__item {
    padding: 40px 36px;
}

.grid-icon-box__items.box-in-row-3 .grid-icon-box__item h4 {
    font-weight: 600;
    font-size: 26px;
    line-height: 130%;
    letter-spacing: -0.02em;

}

.grid-icon-box__items.box-in-row-3 .grid-icon-box__item.none {
    padding: 0;
}

.grid-icon-box__items.box-in-row-3 .grid-icon-box__item h4.font-style-2 {
    font-family: var(--gabarito);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.grid-icon-box__items.box-in-row-3 .grid-icon-box__item h4.font-style-3 {
    font-family: var(--sora);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 21px;
    line-height: 130%;
    letter-spacing: -0.02em;

}

.grid-icon-box__item .btn.font-style-3 {
    border-radius: 6px;
    padding: 12px 21px;
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.01em;
    text-align: center;
    margin-top: 5px;
}


/* has background Color */
.section__grid-icon-box.has-bg-color {
    padding: 70px 20px;
    border-radius: 40px;
}

.section__grid-icon-box .box-has-bg-none {
    margin-top: 40px;
    grid-template-columns: repeat(3, minmax(auto, 357px)) !important;
    justify-content: space-between;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Module: Grid icon box with section background 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.section__grid-icon-box.has-background {
    padding: 5rem 20px 7rem;
    border-radius: 40px;
}

.section__grid-icon-box.has-background .grid-icon-box__heading {
    color: #FAF9EF;
}

.grid-icon-boxes_btn {
    margin-top: 60px;
}

.section__grid-icon-box .grid-icon-box__header.ta-center,
.grid-icon-boxes_btn.ta-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__grid-icon-box.has-background .grid-icon-box__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Module: Grid icon boxes Without background 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.grid-icon-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem 11rem;
}

.grid-icon-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.grid-icon-box>div {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 10px;
}

.grid-icon-boxes img {
    width: 89px;
    object-fit: contain;
    aspect-ratio: 1;
}

.grid-icon-box .primary-btn {
    width: fit-content;
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Image and Text block
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__image-text-block {
    padding-left: 30px;
    padding-right: 30px;
}

.section__image-text-block .wrapper.has-bg {
    border-radius: 36px;
}

.section__image-text-block .itb__image {
    border-radius: 36px;
    overflow: hidden;
    line-height: 1;
}

.section__image-text-block .wrapper.has-bg .itb__image,
.section__image-text-block .wrapper.has-bg .itb__image img {
    height: 100%;
    object-fit: cover;
}

section .itb__text {
    padding-top: 20px;
    padding-bottom: 20px;
}

section.img-left .itb__image {
    order: 1;
}

section.img-left .itb__text {
    order: 2;
}

section.img-right .itb__image {
    order: 2;
}

section.img-right .itb__text {
    order: 1;
}

section.img-width-50 .itb__image {
    max-width: 50%;
}

.section__image-text-block .itb__image {
    line-height: 0;
}

section.img-width-33 .itb__image {
    max-width: 33%;
    width: 100%;
}

section.img-width-33 .itb__text {
    max-width: calc(67% - 65px);
    width: 100%;
}

section.img-left .wrapper.has-bg .itb__text {
    padding-right: 30px;
}

.itb__take-action {
    margin-bottom: 7rem;
}

.itb__take-action .wrapper {
    max-width: 1150px;
}

section.section__image-text-block .itb__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 65px;
}

.itb__take-action .itb__heading {
    max-width: 400px;
    margin: 20px 0 10px;
}

.itb__take-action .itb__heading h2::before,
.itb__take-action .itb__heading h2::after {
    content: "";
    display: table;
    clear: both;
}

.itb__take-action .itb__description {
    font-size: 21px;
    max-width: 520px;
}

.section__image-text-block .wrapper.has-bg:not(.bg-light-green) .btn {
    background-color: var(--green);
}

.section__image-text-block .wrapper.has-bg:not(.bg-light-green) .itb__heading *,
.section__image-text-block .wrapper.has-bg:not(.bg-light-green) .itb__description * {
    color: #F2FFE5;
}

section.itb__take-action .btn-w-arrow {
    gap: 14px;
}





/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Newsletter block Forms
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
section.section__newsletter-block {
    margin-bottom: 7rem;
}

section.section__newsletter-block .wrapper {
    max-width: 1156px;
    padding: 67px 72px;
    border-radius: 36px;
}

section.section__newsletter-block .section__newsletter-block-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}

.section__newsletter-block-text {
    max-width: 390px;
}

.section__newsletter-block-description {
    max-width: 335px;
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -0.21px;
}

.section__newsletter-form-block {
    padding: 48px;
    background-color: #fff;
    border-radius: 24px;
    max-width: 550px;
}

.gform_title {
    margin-bottom: 2rem; 
}
.gform_wrapper .gform-body .gform_fields {
    row-gap: 24px;
}

.gform_wrapper .gform_description {
    margin: 0;
}

.gform_wrapper .gform-field-label {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #0B4746 !important;
    line-height: 1.3 !important;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="email"] {
    border-color: rgb(11 71 70 / 10%) !important;
    box-shadow: none !important;
    padding: 16px 12px !important;
    height: 54px !important;
    border-radius: 6px !important;
    color: #0B4746 !important;
}

.gform_wrapper input[type="text"]::placeholder,
.gform_wrapper input[type="number"]::placeholder,
.gform_wrapper input[type="email"]::placeholder {
    color: rgb(11 71 70 / 50%);
    font-weight: 400;
    line-height: 1.3;
    font-size: 16px;
}

.gform_wrapper .gform-footer {
    margin-top: 40px !important;
}

.gform_wrapper .gform-footer input[type="submit"] {
    background-color: #0B4746 !important;
    padding: 12px 80px 12px 21px !important;
    border-radius: 6px !important;
    color: #fff !important;
    height: 46px !important;
    background-image: url("../images/right-arrow-white.svg") !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    font-size: 16px !important;
    letter-spacing: .16px !important;
    text-transform: uppercase !important;
}

.form-consent {
    font-size: 12px;
    color: #0B4746;
    letter-spacing: -0.12px;
    line-height: 1.3;
    margin: 40px 0 0;
}

.form-consent.embed {
    margin: 0 0 0 6px;
}

.page-id-4144 .form-consent {
	display: none;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Embed Code Form
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__newsletter-form-block .at-inner .at-title,
.at-legend {
    display: none;
}

.section__newsletter-form-block .at-inner {
    background-color: #fff !important;
}

.section__newsletter-form-block .at-fields .at-row:nth-child(1) {
    display: flex;
}

.section__newsletter-form-block .at-fields .error small.error {
    padding: 0px;
    margin: 0px;
}

.section__newsletter-form-block .at-fieldset {
    padding: 0px !important;
}

.section__newsletter-form-block .at-fields .at-row label {
    min-width: unset !important;
    margin: 0px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 12px;
    line-height: 1.4;
    font-family: "Sora", sans-serif;
    color: #0b4746;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
}

.section__newsletter-form-block .at-fields .at-row label input {
    margin: 0px;
    font-size: 14px;
    color: #0b4746;
    font-family: "Sora", sans-serif;
    line-height: 2.71;
    height: 54px;
    padding: 16px 12px !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    border: 1px solid rgba(11, 71, 70, 0.1);
    !important;
    transition: 0.1s ease-in-out
}

.section__newsletter-form-block .at-fields .at-row label input::placeholder {
    font-size: 16px;
    color: rgb(11 71 70 / 50%);
    line-height: 1.5;
}

.section__newsletter-form-block .at-fields .at-row .PersonalUrl {
    display: none;
}

.section__newsletter-form-block .at-inner .footer-text {
    font-size: 12px;
    color: #0B4746;
    letter-spacing: -0.12px;
    line-height: 1.3;
    font-family: "Sora", sans-serif;
    padding: 0px;
    margin: 0px;
}

.section__newsletter-form-block .at-inner .at-markup {
    padding: 0px;
    margin: 0px;
    padding-left: 6px;
    padding-right: 6px;
}

.section__newsletter-form-block .at-inner .at-form-submit {
    padding: 0px;
}

.section__newsletter-form-block .at-inner .at-form-submit {
    padding: 0px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding-left: 6px;
    padding-right: 6px;
    margin-top: 16px;
    margin-bottom: 40px;
}

.section__newsletter-form-block .at-inner .at-form-submit .at-submit {
    margin: 0px;
    color: #fff;
    position: relative;
    background-color: #0B4746 !important;
    padding: 12px 80px 12px 21px !important;
    border-radius: 6px !important;
    height: 46px !important;
    background-image: url("/wp-content/themes/ldwp/assets/images/right-arrow-white.svg") !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    font-size: 16px !important;
    letter-spacing: .16px !important;
    text-transform: uppercase !important;
    min-width: 170px;
    outline: none;
    box-shadow: none;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 1%;
    font-weight: 600;
}






/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Post carousel block 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.section__post-carousel_latest {
    margin: 0 0 7rem;

}

.section__post-carousel-block .wrapper {
    max-width: 1424px;
    padding: 100px 0px 80px;
    border-radius: 34px;
    background: url('../images/bg-featured-press.png') no-repeat center center;
    background-size: cover;
}

.section__post-carousel-block .sub-heading-label {
    background-color: #fff;
    color: #0B4746;
}

.section__post-carousel-subheader {
    max-width: 1175px;
    margin: 0 auto;
}

.section__post-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1175px;
    margin: 15px auto 40px;
}

.section__post-carousel-header h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.section__post-carousel-header .desc {
    max-width: 768px;
    width: 100%;
    font-weight: 300;
    margin-bottom: 30px;
}

.section__post-carousel-header .btn {
    font-size: 16px;
    width: 206px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.16px;
}

.btm-btn-con {
    display: flex;
    justify-content: center;
}

.btm-btn-con .primary-btn {
    margin: 60px auto 30px;
    width: fit-content;
}

.post-carousel__item {
    padding: 24px 16px;
    background-color: #ffffff;
    border-radius: 20px;
}

.post-carousel__item .post-item__title {
    font-size: 21px;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.42px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-carousel__item .post-item__date {
    font-size: 11px;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.42px;
    line-height: 1.64;
    font-weight: 400;
}

.post-carousel__item .post-item__thumbnail {
    line-height: 1;
    margin: 12px 0;
}

.post-carousel__item .post-item__thumbnail img {
    aspect-ratio: 277/165;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.post-carousel__item .post-item__link {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.64;
    letter-spacing: -0.22px;
}

.section__post-carousel-block .post-carousel-outer {
    padding-right: 100px;
    padding-left: 100px;
    overflow: hidden;
}


/* .section__post-carousel-block .splide {
    margin-left: -30px;
} */

.splide__arrows .splide__arrow {
    opacity: 1;
}

.splide__arrows .splide__arrow[disabled] {
    opacity: 0;
}

.splide__arrows .splide__arrow--prev {
    left: -50px;
}

.splide__arrows .splide__arrow svg {
    display: none;
}

.splide__arrows .splide__arrow {
    background: url('../images/circled-arrow.svg') no-repeat center center;
}

.splide__arrows .splide__arrow.splide__arrow--prev {
    transform: rotate(180deg);
}

.splide__arrows .splide__arrow.splide__arrow--next {
    right: -50px;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Full Width banner
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__full-width-banner .wrapper {
    max-width: 1280px;
    width: 100%;
    padding: 10rem 30px;
    margin: 0 auto;
    color: #fff;
}

.full-banner__content {
    max-width: 700px;
    width: 100%;
}

.page-id-4363 .full-banner__content {
    margin: 0 0 0 auto;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Stats block 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
section.section__stats-block {
    margin: 0 0 30px 0;
}

section.section__stats-block .wrapper {
    max-width: 1156px;
    padding: 67px 72px;
    border-radius: 36px;
}

.section__stats-block-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 108px;
}

.stb__content h2.stb__heading {
    margin: 0 0 30px 0;
    max-width: 550px;
}

.stb__content .stb__description {
    max-width: 570px;
    width: 100%;
    font-size: 21px;
    letter-spacing: -0.42px;
    margin: 0 0 30px 0;
}

.stb__stats-content {
    max-width: 250px;
}

.stb__stats-content .stb__stats-item+.stb__stats-item {
    margin-top: 35px;
}

.stb__stats-item h5 {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    color: #47B260;
    letter-spacing: 0;
}

.stb__stats-item p {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.16px;
}






/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Link List
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__link-list {
    margin: 30px 0;
}

.section__link-list .wrapper {
    padding: 0 15px;
}

.section__link-list .link-list__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section__link-list .link-list__content a {
    text-decoration: none;
    font-family: 'Gabarito', sans-serif;
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #000000;
    text-transform: uppercase;
}

.section__link-list .link-list__content .separator {
    font-size: 10px;
    line-height: 1;
}





/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Single Team Member 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.section__stm-block {
    margin: 7rem 0 4rem;
    padding: 0 30px;
}

.section__stm-block .wrapper {
    max-width: 1186px;
    padding: 0 15px;
}

.section__stm-block .stm__header {
    margin: 0 0 4rem 0;
}

.section__stm-block .stm__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.section__stm-block .stm__image {
    max-width: 500px;
    width: 100%;
}

.section__stm-block .stm__image img {
    border-radius: 36px;
    width: 100%;
}

.section__stm-block.img-left .stm__image {
    order: 1;
}

.section__stm-block.img-right .stm__image {
    order: 2;
}

.section__stm-block .stm__text {
    max-width: 545px;
    width: 100%;
}

.section__stm-block.img-right .stm__text {
    order: 1;
}

.section__stm-block.img-left .stm__text {
    order: 2;
}

.section__stm-block .stm__name {
    letter-spacing: -0.5px;
}

.section__stm-block .stm__designation {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.3px;
    font-family: 'Gabarito', sans-serif;
    font-weight: 400;
}

.section__stm-block .stm__bio {
    font-size: 21px;
    line-height: 1.51;
    letter-spacing: -0.42px;
    font-weight: 400;
}

.section__stm-block .stm__bio p:last-child {
    margin-bottom: 0;
}





/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** get_involved_img_and_text_block
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.get_involved_img_and_text_block {
    margin-bottom: 70px;
}

.get_involved_img_and_text_block .itb__description {
    font-size: 20px !important;
    letter-spacing: -0.01em;
    line-height: 151%;
    padding-right: 50px;
}

section.get_involved_img_and_text_block .itb__content {
    gap: 78px;
}

section.get_involved_img_and_text_block.img-width-33 .itb__image {
    max-width: 37.25%;
    width: 100%;
}

.get_involved_img_and_text_block .itb__heading h3 {
    font-size: 39px;
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Team Members
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__team-members-block {
    padding: 6rem 30px;
}

.section__team-members-block .wrapper {
    max-width: 1186px;
}

.section__team-members-block .team-members__header {
    margin: 0 0 4rem;
}

.section__team-members-block .team-members__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 89px;
}

.team-members__item .team-members__image {
    line-height: 1;
    margin: 0 0 20px;
}

.section__team-members-block .team-members__item img {
    border-radius: 36px;
}

.section__team-members-block .team-members__name,
.section__team-members-block .team-members__name a {
    font-size: 24px;
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: -1.44px;
    font-weight: 700;
    color: #0B4746;
}

.section__team-members-block .team-members__designation {
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: -1.44px;
    font-weight: 400;
}

.section__team-members-block.team-members__bod {
    margin-bottom: 0;
}

.team-members__bod .team-members__item img {
    border: 4px solid #43A85A;
}









/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Our supporters
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__our-supporters-block .wrapper {
    padding: 0rem 15px 5rem;
}

.section__our-supporters-block h1 {
    color: #46B25F;
    text-align: center;
}

.section__our-supporters-block .desc {
    max-width: 815px;
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--mid-night-green);
}

.our-supporters__donor-list {
    margin: 7rem auto 5rem;
    max-width: 1225px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.our-supporters__donor-list span {
    line-height: 1.2;
    font-size: 21px;
}









/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Featured News Carousel
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__featured-news-carousel .wrapper {
    background: url(../images/bg-press-posts.png) no-repeat center center;
    background-size: cover;
    border-radius: 36px;
    padding: 100px 0 80px 0;
    max-width: 1424px;
}

.section__featured-news-carousel .post-carousel-outer {
    padding-right: 100px;
    padding-left: 100px;
    overflow: hidden;
}

/* .section__featured-news-carousel .splide {
    margin-left: -30px;
} */

.featured-news-tabs .tab-contents .tab-content:not(.active) {
    display: none;
}

.featured-news-tabs ul.tab-headers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.featured-news-tabs ul.tab-headers li {
    font-size: 16px;
    font-weight: 600;
    background: #0B4746;
    color: #fff;
    padding: 12px 21px;
    border-radius: 6px;
    line-height: 1.4;
    letter-spacing: 0.16px;
    cursor: pointer;
}

.featured-news-tabs ul.tab-headers li.active {
    color: #0B4746;
    background: #fff;
}








/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Section Press Release
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__press-releases-block {
    margin: 8rem 0 5rem;
}

.section__press-releases-block .wrapper {
    max-width: 1200px;
}

.section__press-releases-block .section__post-carousel-header h2 {
    color: #47B260;
}

.section__press-releases-block .tab-contents .tab-content:not(.active) {
    display: none;
}

.section__press-releases-block ul.tab-headers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.section__press-releases-block ul.tab-headers li {
    font-size: 16px;
    font-weight: 600;
    background: #0B4746;
    color: #fff;
    padding: 12px 21px;
    border-radius: 6px;
    line-height: 1.4;
    letter-spacing: 0.16px;
    cursor: pointer;
}

.section__press-releases-block ul.tab-headers li.active {
    color: #0B4746;
    background: #F2FFE5;
}

.section__press-releases-block ul.press-releases-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 0;
}

.section__press-releases-block ul.press-releases-list .has-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.section__press-releases-block ul.press-releases-list .post-item__link {
    margin: 5px 0 0;
}






/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Section Resources
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
section.section__resources-block {
    padding: 1rem 15px;
    border-radius: 36px;
    margin: 0 0 4rem 0;
}

.section__resources-block .wrapper {
    padding: 0 56px;
}

section.section__resources-block .resources-list {
    display: grid;
    grid-template-columns: 100%;
    gap: 30px;
    border-radius: 36px;
}

.section__resources-block-header {
    margin-bottom: 55px;
}

section.section__resources-block .resources-list .resources__item {
    display: flex;
    justify-content: flex-start;
    gap: 45px;
    padding: 25px 60px 35px 58px;
    border-radius: 36px;
}

.r_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    max-width: 770px;
    width: 100%;
}

section.section__resources-block .resources-list .post-item__thumbnail {
    max-width: 280px;
    width: 100%;
}

section.section__resources-block .resources-list .post-item__thumbnail img {
    border-radius: 35px;
}

.resources__item h4.post-item__title {
    font-family: "Gabarito", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110.00000000000001%;
    letter-spacing: -0.02em;
    text-align: left;

}

.resources__item .post-item__excerpt {
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 20.22px;
    line-height: 150%;
    letter-spacing: -0.02em;
    text-align: left;
}

.resources__item.bg-mosque-green h4.post-item__title,
.resources__item.bg-mosque-green .post-item__excerpt {
    color: var(--light-green);
}

section.section__resources-block .resources__item .btn {
    line-height: 1.4;
    width: fit-content;
}

.resources__item.bg-mosque-green .btn {
    background-color: var(--green);
}






/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Section Founder Message
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.itb__founders-message {
    margin-bottom: 7rem;
}

.itb__founders-message .wrapper {
    max-width: 1156px;
    border-radius: 36px;
    overflow: hidden;
}

.itb__founders-message .itb__image {
    border-radius: 36px;
    overflow: hidden;
    max-width: 37.5% !important;
}

.itb__founders-message .itb__heading {
    max-width: 565px;
    margin: 25px 0;
}

.itb__founders-message .itb__heading::before,
.itb__founders-message .itb__heading::after {
    content: "";
    display: table;
    float: none;
    clear: both;
}

.itb__founders-message .highlighted {
    display: inline-block;
    float: none;
    clear: unset;
    z-index: 2;
}

.itb__founders-message .itb__heading h3 {
    font-size: 39px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.39px;
}

.itb__founders-message .itb__description p {
    font-size: 20px;
    line-height: 1.51;
    letter-spacing: 0.2px;
    font-weight: 400;
}

.itb__founders-message .itb__description strong {
    font-size: 27px;
    line-height: 1.51;
    letter-spacing: 0.27px;
    font-weight: 600;
}

.itb__founders-message .btn-w-arrow {
    gap: 14px;
    font-weight: 600;
    margin: 25px 0 0;
}








/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** About page Image and Text block
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.about__itb-section .wrapper {
    max-width: 1156px;
}

section.section__image-text-block.about__itb-section .itb__content {
    align-items: center;
    justify-content: space-between;
    gap: 105px;
}

.section__image-text-block-inner .itb__description {
    margin: 30px 0;
}

.about__itb-section .itb__image img {
    max-width: 500px;
    width: 100%;
}

.about__itb-section .itb__text {
    max-width: 500px;
    width: 100%;
}

.about__itb-section .itb__heading {
    margin: 20px 0 40px;
}

.about__itb-section .itb__description {
    font-size: 21px;
    line-height: 1.51;
    letter-spacing: -0.42px;
}

section.about__itb-section.about__itb-section-2 {
    margin: 4rem 0 7rem;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Coalition for Image and Text
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.coalition_for_childcare-txt-img .itb__image img {
    width: 100%;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Section Call To Action
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__call_to_action_block {
    margin: 0 0 7rem;
}

.section__call_to_action_block.fixed_width {
    margin-left: 30px;
    margin-right: 30px;
}

section.section__call_to_action_block .wrapper {
    padding: 50px 60px 60px;
    border-radius: 36px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    text-align: center;
    min-height: 265px;
}

section.section__call_to_action_block .wrapper.has-bg {
    padding: 70px 50px 70px;
}

section.section__call_to_action_block.left .wrapper {
    text-align: left;
}

.section__call_to_action_block .wrapper.full_width {
    max-width: 100%;
    border-radius: 36px;
}

.section__call_to_action_block .sub-heading-label {
    display: inline-block;
    width: fit-content;
}

.section__call_to_action_block .cta-block__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

.section__call_to_action_block.left .cta-block__content {
    align-items: flex-start;
}

.section__call_to_action_block .wrapper.full_width .cta-block__content .desc {
    max-width: 440px;
}











/* Page: Our Team */
.page-id-145 .section__hero-banner {
    background-position: center top !important;
}




/* Page: Press */

.section__newsletter-block h2.heading {
    margin: 25px 0 30px;
}

.section__newsletter-block h2.heading.has-logo {
    margin: 0 0 30px;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Page Our Work
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.our-work__itb-section {
    margin-bottom: 6rem;
}

.our-work__itb-section .wrapper {
    max-width: 1156px;
}

section.section__image-text-block.our-work__itb-section .itb__content {
    justify-content: space-between;
}

section.our-work__itb-section .itb__image {
    max-width: 43%;
}

.our-work__itb-section .itb__heading::before,
.our-work__itb-section .itb__heading::after {
    content: "";
    display: table;
    float: none;
    clear: both;
}

.our-work__itb-section .itb__heading .highlighted::after {
    width: 101%;
}

.our-work__itb-section .itb__description {
    font-size: 21px;
    letter-spacing: -0.42px;
    max-width: 560px;
    margin: 30px 0;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Social Share
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section__social-share {
    padding: 0 56px;
}

.section__social-share .wrapper:not(.none) {
    padding: 40px 30px;
}

.section__social-share-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.section__social-share-inner img {
    border-radius: 6px;
    width: 46px;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Accordion 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section_accordion {
    margin: 0 30px;
}

.faq-list {
    margin-top: 50px;
}

.faq-question {
    font-family: "Gabarito", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    color: #0b4746;
    cursor: pointer;
    font-weight: 700;
}

.faq-question.large {
    font-size: 40px;
}

.faq-question span {
    display: block;
    max-width: calc(100% - 100px);
}

.faq-answer {
    font-weight: 400;
    padding: 7px 0;
    color: #0b4746;
    display: none;
}

.faq-answer p {
    margin: 30px 0 0;
}

.faq-border {
    border-bottom: 2px solid #46b25f;
    padding: 36px 8px;
}

.faq-icon {
    transition: all .3s linear;
}

.active-parent .faq-icon {
    transform: rotate(90deg);
    transition: all .3s linear;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Footer 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.site-footer {
    background-color: var(--mosque-green);
    border-radius: 45px 45px 0 0;
    margin-top: 50px;
}

.site-footer.is_full-width-container {
    margin-top: -70px;
    z-index: 1;
    position: relative;

}

.site-info {
    padding: 84px 20px 145px;
    color: var(--honeydrew);
    font-size: 18px;
    max-width: 1324px;
    margin: 0 auto;
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    line-height: 1.4;
    font-style: normal;
    letter-spacing: -0.06em;
}

.site-footer a {
    color: var(--honeydrew);
    font-size: 18px;
    font-family: "Sora", sans-serif;
}

.footer-inner-row-0 {
    margin-bottom: 30px;
}

.footer-inner-row-1 {
    display: grid;
    grid-template-columns: 365px 1fr auto;
    border-bottom: 2px solid var(--honeydrew);
    padding-bottom: 50px;
    gap: 50px;
    margin-bottom: 68px;
}

.footer-col-1 .footer-desc {
    margin-top: 40px;
    max-width: 600px;
}

.footer-logo-con img {
    max-width: 280px;
}

/* Footer Menu */
#footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

#footer-menu>li>a,
.ft-menu-btn a {
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 18px;
}

#footer-menu .sub-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

#footer-menu .sub-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    color: var(--honeydrew);
    text-decoration: none;
}

/* Social */
.social-links {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

.footer-inner-row-2 {
    display: flex;
    justify-content: space-between;
}

.footer-bottom-link {
    display: flex;
    flex-direction: row;
    gap: 100px;
}


/* Will change later */
.footer-from h3 {
    color: var(--light-green);
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: -.21px;
    margin: 0 0 20px 0;
}

.footer-from .btn {
    text-transform: uppercase;
    background-color: var(--yellow);
    border-radius: 7px;
    text-decoration: none;
    padding: 8px 10px;
    color: var(--dark-green);
    font-weight: 600 !important;
    position: relative;
    display: inline-block;
}

.footer-from .btn::after {
    content: url('/wp-content/themes/ldwp/assets/images/arrow.svg');
    margin-left: 10px;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** 404 page
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.error-404 {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-page-content {
    text-align: center;
}






/* Responsive */
@media only screen and (max-width: 1366px) {

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Hero Banner
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__hero-banner {
        margin: 0 30px;
    }
}


@media only screen and (max-width: 1024px) {

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Hero Banner
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__hero-banner {
        padding: 5px 30px;
        margin: 0 20px;
        min-height: 540px;
    }

    .section__hero-banner.content-align-left h1.hero-banner__heading {
        font-size: 65px !important;
    }

    .section__hero-banner .hero-banner__description {
        font-size: 18px;
    }

    .section__hero-banner.content-align-center h1.hero-banner__heading {
        font-size: 100px !important;
    }

    .section__hero-banner.content-align-center {
        min-height: 500px;
        margin-bottom: 4rem;
    }

    .section__hero-banner.content-align-center .hero-banner__description {
        font-size: 18px;
        max-width: 680px;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Accordion
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .faq-question.large {
        font-size: 35px;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Team Members
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__team-members-block {
        padding: 4rem 30px;
    }

    .section__team-members-block .team-members__list {
        gap: 50px;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Newsletter
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    section.section__newsletter-block {
        margin-bottom: 4rem;
        padding: 0 20px;
    }

    section.section__newsletter-block .wrapper {
        padding: 3rem 50px;
    }

    .section__newsletter-form-block {
        padding: 35px;
    }

    section.section__newsletter-block .section__newsletter-block-content {
        gap: 50px;
    }

    .section__newsletter-block-description {
        font-size: 18px;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Carousel
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__post-carousel_latest {
        margin: 0 0px 7rem;
    }

    .section__post-carousel-block .wrapper,
    .section__featured-news-carousel .wrapper {
        padding: 50px 0px 80px;
    }

    .section__post-carousel-block .post-carousel-outer,
    .section__featured-news-carousel .post-carousel-outer {
        padding-right: 50px;
        padding-left: 50px;
    }

    .section__post-carousel-subheader {
        padding-left: 20px;
    }

    .section__post-carousel-header {
        margin: 15px 20px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Sub heading
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .sub-heading-label {
        font-size: 14px;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Resources List
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__resources-block .wrapper {
        padding: 0;
    }

    section.section__resources-block {
        padding: 1rem 30px;
    }

    section.section__resources-block .resources-list {
        gap: 40px;
    }

    .section__press-releases-block ul.press-releases-list {
        grid-template-columns: repeat(3, 1fr);
    }

    section.section__resources-block .resources-list .resources__item {
        padding: 25px 60px 35px 30px;
    }

    .section__resources-block-header {
        margin-bottom: 35px;
    }

    .resources__item .post-item__excerpt {
        font-size: 18px;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Supporter Block
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__our-supporters-block .wrapper {
        padding: 0rem 15px 3rem;
    }

    .our-supporters__donor-list {
        margin: 5rem auto 5rem;
        grid-template-columns: 1fr 1fr auto;
        max-width: 80%;
    }

    .our-supporters__donor-list span {
        font-size: 19px;
        text-align: center;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Grid Icon box
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__grid-icon-box {
        margin: 5rem 30px;
    }

    .grid-icon-box__items.box-in-row-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .grid-icon-boxes {
        gap: 4rem;
    }

    .grid-icon-box>div {
        gap: 20px;
    }

    .grid-icon-boxes img {
        width: 50px;
    }



    .grid-icon-box__items.box-in-row-3 .grid-icon-box__item h4 {
        font-size: 22px;
    }

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Section State Block
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__stm-block .stm__bio {
        font-size: 18px;
    }

    .section__stats-block .stb__content .stb__description {
        font-size: 18px;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Call to Action
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__call_to_action_block .cta-block__content h2 {
        font-size: 50px;
    }

    .section__call_to_action_block {
        margin: 0 0 4rem;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Image and text
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__image-text-block .wrapper {
        padding: 0;
    }

    .section__image-text-block {
        margin-bottom: 3rem;
    }

    .section__image-text-block .itb__description {
        font-size: 18px;
    }





    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Custom Css- get_involved_img_and_text_block
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .get_involved_img_and_text_block {
        margin-bottom: 70px;
    }

    section.get_involved_img_and_text_block .wrapper {
        padding: 0;
    }

    section.get_involved_img_and_text_block .itb__content {
        gap: 40px;
    }

    .section__image-text-block.get_involved_img_and_text_block .itb__description {
        font-size: 16px !important;
        margin: 20px 0;
    }

    .get_involved_img_and_text_block .itb__heading h3 {
        font-size: 35px;
    }

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Custom Css- About - Image and Text
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    section.section__image-text-block.about__itb-section .itb__content {
        gap: 40px;
    }






    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Footer
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .footer-inner-row-1 {
        grid-template-columns: 100%;
        gap: 90px;
    }

    #footer-menu {
        justify-content: left;
    }





}


@media only screen and (max-width: 998px) {

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Header
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    #main-header .toggle-menu {
        display: block;
    }

    .header-container {
        padding: 20px 10px !important;
    }

    .header-menu-container {
        position: fixed;
        left: 0;
        background: #fff;
        width: 300px;
        top: 0;
        bottom: 0;
        box-shadow: 0 0 10px #0000001f;
        translate: -100% 0;
        transition: all .4s linear;
        z-index: 99;
    }

    .header-menu-container.active-mb {
        translate: 0 0;
    }

    #primary-menu {
        display: flex;
        flex-direction: column;
        padding: 8rem 20px 20px 20px;
        text-align: left;
        align-items: flex-start;
        height: 100vh;
        overflow: auto;
    }

    #primary-menu .sub-menu {
        border-radius: 0;
        position: static;
        box-shadow: none;
        min-width: unset;
        padding: 10px;
        display: none;
    }

    #primary-menu li {
        width: 100%;
    }

    .menu-btn {
        text-align: center;
    }

    .menu-arrow {
        display: block;
        float: right;
        margin-top: -26px;
    }


    .menu-arrow img {
        rotate: 90deg;
        width: 20px;
        position: relative;
        top: 4px;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Footer
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

    .site-footer {
        border-radius: 26px 26px 0 0;
    }

    .site-info {
        padding: 60px 20px 90px;
    }

    .footer-inner-row-1 {
        grid-template-columns: 100%;
        margin-bottom: 40px;
    }

    .footer-desc {
        max-width: 454px;
        width: 100%;
    }

    .footer-bottom-link {
        gap: 50px;
    }

    #footer-menu {
        gap: 30px;
    }

    #footer-menu .menu-arrow {
        display: none;
    }

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Accordion
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section_accordion {
        margin: 0 20px;
    }

    .faq-question.large {
        font-size: 32px;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Banner
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__hero-banner.content-align-left h1.hero-banner__heading {
        font-size: 55px !important;
    }

    .section__hero-banner.content-align-center h1.hero-banner__heading {
        font-size: 80px !important;
    }

    .section__hero-banner .hero-banner__description {
        font-size: 18px !important;
    }

    .section__hero-banner.content-align-center {
        min-height: 400px;
    }

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Image and Text
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    section.section__image-text-block .itb__content {
        gap: 40px !important;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Founder Section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .itb__founders-message .itb__heading h3 {
        font-size: 32px;
    }

    .itb__founders-message .itb__description strong {
        font-size: 20px;
    }

    .itb__founders-message .itb__description p {
        font-size: 15px;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Section Stat Block
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    section.section__stats-block .wrapper {
        padding: 50px;
    }

    .section__stats-block-inner {
        gap: 50px;
    }

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Call To Action
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__call_to_action_block .cta-block__content h2 {
        font-size: 38px;
    }

    .section__call_to_action_block.fixed_width {
        margin-left: 20px;
        margin-right: 20px;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    **Custom Css Section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .about__itb-section .itb__text {
        max-width: 50%;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Section Newsletters post 
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__newsletters-block .wrapper:not(.bg-none) {
        padding: 70px 30px;
    }

    .section__newsletters-block.has-bg-none {
        padding: 40px 20px;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Team Members
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__team-members-block .team-members__name,
    .section__team-members-block .team-members__name a {
        font-size: 20px;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Resources Block
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .resources__item .post-item__excerpt {
        font-size: 16px;
    }

    .r_content {
        gap: 20px;
    }





    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Our Support
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .our-supporters__donor-list {
        grid-template-columns: 1fr 1fr;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** About page Image and Text block
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    section.about__itb-section.about__itb-section-2 {
        margin: 4rem 0;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Section Grid Icon Box
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__grid-icon-box {
        margin: 5rem 20px;
    }

    .grid-icon-box__items.box-in-row-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }


}


@media only screen and (max-width: 767px) {
    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Footer
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

    .footer-inner-row-2 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Accordion
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .faq-question.large {
        font-size: 26px;
        line-height: 1.2;
    }

    .faq-icon {
        width: 25px;
    }

    .faq-question span {
        max-width: calc(100% - 83px);
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Banner
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__hero-banner.content-align-center h1.hero-banner__heading {
        font-size: 55px !important;
    }

    .section__hero-banner.content-align-center {
        min-height: 280px;
        padding: 4rem 20px;
    }

    .section__hero-banner {
        padding: 4rem 20px;
        margin: 0 20px;
        min-height: 400px;
    }

    .section__hero-banner.content-align-left h1.hero-banner__heading {
        font-size: 48px !important;
    }

    .section__hero-banner .hero-banner__description {
        font-size: 16px !important;
    }


    /* Full width banner */
    .section__full-width-banner .wrapper {
        padding: 5rem 30px;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Button
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .btn-w-arrow {
        font-size: 14px;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Our Support
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .our-supporters__donor-list {
        max-width: 100%;
    }

    .our-supporters__donor-list span {
        font-size: 16px;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Grid Icon Section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .grid-icon-box__items.box-in-row-4,
    .grid-icon-box__items.box-in-row-3 {
        grid-template-columns: 100% !important;
    }

    .section__grid-icon-box.has-background {
        padding: 2rem 20px 3rem;
    }

    .section__grid-icon-box.has-background,
    .section__grid-icon-box.has-bg-color {
        margin: 5rem 0;
    }

    .section__grid-icon-box.has-background .grid-icon-box__content {
        gap: 0;
    }

    .grid-icon-box__items .grid-icon-box__item {
        padding: 2rem 20px;
    }

    .section__grid-icon-box {
        margin: 5rem 20px 3rem;
    }

    .grid-icon-boxes {
        grid-template-columns: 100%;
    }






    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Image and Text
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__image-text-block {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section__image-text-block .wrapper {
        padding: 3rem 0px 0;
    }

    .section__image-text-block.has-bg {
        padding-left: 0;
        padding-right: 0;
    }

    .section__image-text-block.has-bg .wrapper {
        padding: 30px 20px;
    }

    section.img-width-33 .itb__text {
        width: 100%;
        max-width: 100%;
    }




    section.section__image-text-block .itb__content {
        flex-direction: column;
        gap: 40px !important;
    }

    section.img-width-50 .itb__image,
    section.img-width-33 .itb__image {
        max-width: 100% !important;
    }

    .section__image-text-block .itb__description {
        font-size: 16px;
    }

    .section__image-text-block .itb__description p:first-child {
        margin-top: 0;
    }

    section.section__image-text-block .itb__content>div {
        order: unset !important;
    }

    section.img-left .wrapper .itb__text {
        max-width: 100%;
        padding: 0 !important;
    }

	
	/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Founder Section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .itb__founders-message .itb__image img {
        max-height: 407px;
		object-fit: cover;
		width: 100%;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Get Involved -- Custom css section  for image and Text
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .get_involved_img_and_text_block .itb__description {
        padding-right: 0;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** About --- Custom css section  for image and Text
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .about__itb-section .itb__text {
        max-width: 100%;
    }

    .about__itb-section .itb__heading {
        margin: 20px 0 20px;
    }

    section.about__itb-section.about__itb-section-2 {
        margin: 3rem 0 3rem;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Section Newsletters post 
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .newsletters-list {
        grid-template-columns: 100%;
    }





    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** NewsLetter Section Form 
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    section.section__newsletter-block .wrapper {
        padding: 3rem 20px;
    }

    section.section__newsletter-block .section__newsletter-block-content {
        gap: 0;
        flex-direction: column;
    }

    .section__newsletter-form-block {
        padding: 20px;
    }

    .section__newsletter-block-description {
        font-size: 16px;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Embed Code Form
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

    .section__newsletter-form-block .at-fields .at-row label {
        gap: 8px;
    }






    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Team Members
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__team-members-block {
        padding: 4rem 20px;
    }

    .section__team-members-block .team-members__name,
    .section__team-members-block .team-members__name a {
        font-size: 24px;
    }

    .section__team-members-block .team-members__list {
        grid-template-columns: 100%;
    }

    .team-members__item .team-members__image {
        margin: 0 0 10px;
    }

    .section__team-members-block .team-members__header {
        margin: 0 0 2rem;
    }



    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** stats block
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

    section.section__stats-block .wrapper {
        padding: 40px 20px;
    }

    .section__stats-block-inner {
        gap: 50px;
        flex-direction: column;
    }

    .stb__stats-content {
        max-width: 400px;
    }

    .section__stats-block .stb__content .stb__description {
        font-size: 16px;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Call TO Action
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    section.section__call_to_action_block .wrapper {
        padding: 40px 15px 40px;
    }

    section.section__call_to_action_block .wrapper.has-bg {
        padding: 70px 15px 70px;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Resources
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    section.section__resources-block .resources-list {
        gap: 50px;
        grid-template-columns: 100%;
    }

    section.section__resources-block .resources-list .resources__item {
        gap: 15px;
        flex-direction: column;
        padding: 30px 20px 40px;
    }

    section.section__resources-block .resources-list .post-item__thumbnail,
    section.section__resources-block .resources-list .post-item__thumbnail img {
        border-radius: 20px;
    }

    section.section__resources-block {
        padding: 3rem 15px;
    }

    section.section__resources-block .resources-list .post-item__thumbnail {
        max-width: 400px;
    }





    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Press page Resource List 
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__press-releases-block ul.press-releases-list {
        grid-template-columns: 100%;
    }

    .featured-news-tabs ul.tab-headers,
    .section__press-releases-block ul.tab-headers {
        flex-wrap: wrap;
        gap: 10px;
    }

    .section__press-releases-block ul.tab-headers li,
    .featured-news-tabs ul.tab-headers li {
        font-size: 14px;
        padding: 9px 16px;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Carousel Section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__post-carousel-block .wrapper,
    .section__featured-news-carousel .wrapper {
        padding: 50px 0px 60px;
    }

    .section__post-carousel-header .btn {
        font-size: 14px;
    }

    .section__post-carousel-block .post-carousel-outer {
        padding-right: 50px;
        padding-left: 50px;
    }

    .splide__arrows .splide__arrow--prev {
        left: -40px;
    }

    .splide__arrows .splide__arrow.splide__arrow--next {
        right: -40px;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Content And Button 
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .content-and-btn-sec .wrapper {
        padding: 0 20px;
    }

    .content-and-btn-sec-inner .content p {
        font-size: 16px !important;
    }





    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Single Team Member
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__stm-block {
        margin: 5rem 0 4rem;
        padding: 0 20px;
    }

    .section__stm-block .stm__header {
        margin: 0 0 2rem 0;
    }

    .section__stm-block .stm__content {
        gap: 30px;
        flex-direction: column;
    }

    .section__stm-block.img-right .stm__content {
        flex-direction: column-reverse;
    }

    .section__stm-block .wrapper {
        padding: 0;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Social Share
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .section__social-share {
        padding: 0 20px;
    }

    .section__social-share .wrapper:not(.none) {
        padding: 20px 10px;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** Footer
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    #footer-menu {
        gap: 60px;
        flex-direction: column;
    }



}