/*
===============================================
	MAIN.CSS
	--------
	- This CSS file is same for all pages.
===============================================
*/

body .vision-gallery {
    position: relative;
    width: calc(100% + 40px);
    left: -20px;
    overflow: hidden;
}

body .vision-gallery .gallery {
    position: relative;
    display: flex;
    width: fit-content;
    max-width: fit-content;
}

body .vision-gallery .gallery .gallery-item {
    max-width: 17vw;
    width: 17vw;
    height: 17vw;
    padding: 10px;
}

body .vision-gallery.gallery-1 .gallery {
    animation: watermove 50s linear alternate infinite;
}

body .vision-gallery.gallery-2 .gallery {
    animation: watermove2 50s linear alternate infinite;
}

@keyframes watermove {
    0% {
        left: 0%;
    }
    100% {
        left: -43%;
    }
}

@keyframes watermove2 {
    0% {
        left: -43%;
    }
    100% {
        left: 0%;
    }
}

body .vision-gallery .gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    object-position: center;
}

body .staff-main-container {
    display: flex;
    flex-wrap: wrap;
}

body .staff-main-container .staff-item {
    width: calc(33.33% - 30px);
    background: #fafafa;
    margin: 15px;
    border-radius: 30px;
    padding: 25px;
}

body .staff-main-container .staff-item .staff-image {
    display: flex;
    background: #f0f0f0;
    border-radius: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

body .staff-main-container .staff-item .staff-image img {
    margin: 0px;
    padding: 0;
    height: 300px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

body .staff-main-container .staff-item .staff-name {
    text-align: center;
}

body .staff-main-container .staff-item .staff-cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 5px;
}

body .staff-main-container .staff-item .staff-cta-container .main-cta {
    margin: 4px;
}

body .staff-featured-section {
    margin-top: 80px;
}

body .staff-featured-section .staff-name {
    text-align: center;
}

body .staff-featured-section .staff-image {
    background: #f8f8f8;
    border-radius: 30px;
    margin-bottom: 30px;
    max-width: 520px;
    margin: 0 auto;
    margin-top: 60px;
    /* height: 500px; */
    display: flex;
    overflow: hidden;
}

body .staff-featured-section .staff-image img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: top center;
    top: 0px;
    position: relative;
}

body .staff-featured-section .staff-testimony,
body .staff-featured-section .staff-desc-text,
body .staff-featured-section .staff-email {
    max-width: 520px;
    margin: 0 auto;
    margin-top: 30px;
}

body .staff-featured-section .staff-desc-text {
    margin-top: 60px;
}

body .staff-featured-section .staff-email {
    margin-bottom: 120px;
    margin-top: 60px;
}

body .staff-featured-section .staff-email .email-inner {
    display: flex;
    background: #f8f8f8;
    padding: 40px 60px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
}

body .staff-featured-section .staff-email .email-text p {
    margin-bottom: 0px;
    padding-right: 30px;
}

body .staff-featured-section .staff-email .email-copy {
}

body .job-popup-container .job-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.48);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.6s 0.4s;
}

body .job-popup-container.active .job-popup {
    opacity: 1;
    pointer-events: auto;
    transition: 0.6s;
}

body:has(.job-popup-container.active){
    overflow: hidden;
}

body .job-popup-container .job-popup .popup-inner {
    position: relative;
    background: #fff;
    max-width: 620px;
    padding: 60px;
    border-radius: 50px;
    gap: 0px;
    transition: 0.4s;
    opacity: 0;
    pointer-events: none;
}

body .job-popup-container.active .job-popup .popup-inner {
    transition: 0.6s 0.4s;
    opacity: 1;
    pointer-events: auto;
}

body .job-popup-container .job-popup.video-popup .popup-inner{
    max-width: 100%;
    padding: 0px;
    background: transparent;
}

body .job-popup-container .job-popup.video-popup .popup-video iframe{
    width: 900px;
    height: 506px;
    border-radius: 25px;
}

body .job-popup-container .job-popup.video-popup .popup-video,
body .job-popup-container .job-popup.video-popup .popup-close{
    opacity: 0;
    transition: 0.4s;
}

body .job-popup-container.active .job-popup.video-popup .popup-video,
body .job-popup-container.active .job-popup.video-popup .popup-close{
    opacity: 1;
    transition: 0.8s 0.8s;
}

body .job-popup-container .job-popup.video-popup .popup-close{
    top: -30px;
    right: -30px;
}

body .job-popup-container .job-popup .main-heading-2 h2 {
    margin-bottom: 25px;
    margin-top: 0px;
}

body .job-popup-container .job-popup .elementor-widget-html,
body .job-popup-container .job-popup .elementor-widget-html > div{
    position: absolute;
    right: 0px;
    top: 0px;
}

body .job-popup-container .job-popup .popup-close {
    position: absolute;
    background: #00BAB3;
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transform: scale(1);
    transition: 0.2s;
}

body .job-popup-container .job-popup .popup-close:hover {
    transform: scale(1.05);
    transition: 0.2s;
    background: #3C4043;
}

body .job-popup-container .job-popup .popup-close:before,
body .job-popup-container .job-popup .popup-close:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    height: 2px;
    width: 50%;
    background: #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

body .job-popup-container .job-popup .popup-close:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

body .job-popup-container .job-popup.missioncardpopup{
    /* background: #FFF; */
}

body .job-popup-container .job-popup.missioncardpopup .popup-inner{
    max-width: calc(100% - 60px);
    padding-top: 0px;
    padding: 0px;
    background: transparent;
}

body .job-popup-container .job-popup.missioncardpopup .popup-inner .popup-close{
    position: absolute;
    top: 35px;
    right: 35px;
    transform: scale(1.4)
}

body .job-popup-container .job-popup.missioncardpopup .popup-content{
    max-width: calc(1000px + 80px);
    padding: 60px;
    padding-right: 100px;
    z-index: 1;
    max-height: calc(100vh - 60px);
    overflow-y: scroll;
    scrollbar-width: none;
    background: #FFF;
    border-radius: 40px;
}

body .job-popup-container .job-popup.missioncardpopup .megamega-main-heading br {
    content: "";
    display: none;
}

body .job-popup-container .job-popup.missioncardpopup .megamega-main-heading{
    margin-bottom: 40px;
}

body .job-popup-container .job-popup.missioncardpopup .megamega-main-heading br:after {
    content: " ";
}

body .flow-search {
    display: flex;
}

body .flow-search .flow-search-input {
    display: flex;
    width: 100%;
}

body .flow-search .flow-search-input .search-input {
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 20px;
}

body .flow-search .flow-search-input .search-input.category-input {
    width: 40%;
}

body .flow-search .flow-search-input .search-input.links-input {
    width: 60%;
}

body .flow-search .flow-search-input .search-label {
    margin-right: 20px;
    min-width: fit-content;
}

body .flow-search .flow-search-input .search-options {
    position: relative;
    width: 100%;
}

body .flow-search .flow-search-input .search-options .option-selected {
    background: #fafafa;
    padding: 12px 18px;
    border: 1px solid #d1d1d1;
    border-radius: 25px 25px 25px 25px;
    cursor: pointer;
}

body .flow-search .flow-search-input .search-options.open .option-selected {
    border-bottom: none;
    border-radius: 25px 25px 0px 0px;
}

body .flow-search .flow-search-input .search-options .option-selected h4 {
    margin-bottom: 0px;
    margin-top: 0px;
    font-weight: 700;
}

body .flow-search .flow-search-input .search-options .all-options {
    position: absolute;
    background: #fafafa;
    border: 1px solid #d1d1d1;
    width: 100%;
    border-radius: 0 0 25px 25px;
    border-top: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

body .flow-search .flow-search-input .search-options.open .all-options {
    opacity: 1;
    pointer-events: auto;
}

body .flow-search .flow-search-input .search-options .all-options h4 {
    background: #fafafa;
    padding: 12px 18px;
    margin-bottom: 0px;
    margin-top: 0px;
    cursor: pointer;
}

body
    .flow-search
    .flow-search-input
    .search-options.options-links
    .all-options
    h4 {
    display: none;
}

body
    .flow-search
    .flow-search-input
    .search-options.options-links
    .all-options
    h4.item-default {
    display: block;
}

body
    .flow-search
    .flow-search-input
    .search-options.options-links
    .all-options
    h4.active {
    display: block;
}

body .flow-search .flow-search-input .search-options .all-options h4:hover {
    background: #fff;
}

body .flow-search .flow-search-submit {
    position: relative;
}

body .flow-search .flow-search-submit .submit-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00bab3;
    font-size: 24px;
    color: #fff;
}

/* Draggable Slider CSS */

.slider {
    position: relative;
}

.slider__container {
    cursor: grab;
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

.slider__container.dragging {
    scroll-behavior: auto;
    cursor: grabbing;
}

.slider__item {
    padding: 16px 8px;
    flex: 0 0 auto;
    width: calc(100% / 5);
}

.slider__container[data-step="4"] .slider__item {
    width: calc(100% / 4);
}

.slider__container[data-step="3"] .slider__item {
    width: calc(100% / 3);
}

.slider__container[data-step="2"] .slider__item {
    width: calc(100% / 2);
}

.slider__container[data-step="1"] .slider__item {
    width: calc(100% / 1);
}

.slider__item .slider-inner {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 50px;
    height: 100%;
}

.slider.light-theme .slider__item .slider-inner {
    background: #fff;
}

.slider__container .slider__item img {
    object-fit: cover;
    user-select: none;
    height: 400px;
    width: 100%;
    border-radius: 30px;
    margin-bottom: 20px;
    overflow: hidden;
}

.slider_navigation{
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.slider__control {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3C4043;
    font-size: 24px;
    color: #fff;
    border: none;
    transition: 0.3s;
}

.slider__control:focus,
.slider__control:hover{
    background: #3C4043;
    transform: scale(1.15);
    transition: 0.3s;
}

.slider__control span{
    line-height: 100%;
}

.slider__control.prev {
    margin-right: 10px;
    background: #A3A3A3;
}


.slider__control.prev span{
    transform: rotate(180deg);
    line-height: 100%;
}

.slider__control:hover{
    background: #3C4043;
}

.slider__item img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
}

body .group-slider .slide-heading h2{
    margin-top: -5px;
    margin-bottom: 30px;
}

body .popular-pages .slide-heading h3{
    font-weight: 700;
    text-align: center;
     margin-top: -5px;
}

body .popular-pages .slide-cta{
    text-align: center;
}

body .group-slider{
    width: calc(100% + 80px);
}

body .group-slider .slider__control{
    position: relative;
    left: -80px;
}

body .popular-pages{
    width: calc(100% + 0px);
}

body .popular-pages .slider__control{
    position: relative;
    left: 0px;
}

body .popular-pages .slider__item .slider-inner{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

body .college-team-slider,
body .more-staff-slider{
    margin-bottom: 120px;
    margin-top: 60px;
}

body .college-team-slider .slider__item .slider-inner,
body .more-staff-slider .slider__item .slider-inner{
    padding: 25px;
    margin: 10px;
}

body .college-team-slider.staff-main-container .staff-item,
body .more-staff-slider.staff-main-container .staff-item{
    margin: 0px;
    padding: 0;
    background: transparent;
}

body .college-team-slider .slider_navigation,
body .more-staff-slider .slider_navigation{
    width: 100%;
}

body .events-featured-section{
    margin-top: 80px;
    margin-bottom: 80px;
}

body .events-featured-section .event-date p{
    text-transform: uppercase;
}

body .events-featured-section .event-name h2{
    margin-bottom: 0px;
}

body .events-featured-section .event-image{
    position: relative;
    display: flex;
}

body .events-featured-section .event-image.deafult{
    /* background: #f8f8f8; */
}

body .events-featured-section .event-image .watch-video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body .events-featured-section .event-image .watch-video-centered{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .events-featured-section .multiple-dates p{
    margin-top: 20px;
}

body .events-featured-section .event-image img{
    max-height: 520px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    background: #f8f8f8;
}

body .events-featured-section .event-desc-text p{
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

body .events-featured-section .cta-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

body .events-featured-section .cta-container a{
    margin: 10px;
}

body .events-highlights-section{
    margin-top: 160px;
    margin-bottom: 20px;
}

body .events-highlights-section .highlights-container{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    left: -15px;
    margin-top: 60px;
}

body .events-highlights-section .highlights-container .highlight-item{
    position: relative;
    width: calc(50% - 30px);
    background: #FAFAFA;
    border-radius: 50px;
    margin: 15px;
    padding: 55px;
    min-height: 460px;
    transition: 0.3s;
}

body .events-highlights-section .highlights-container .highlight-icon{
    display: flex;
}

body .events-highlights-section .highlights-container .highlight-icon img{
    max-width: 100px;
}

body .events-highlights-section .highlight-heading h2,
body .events-highlights-section .highlight-description h2{
    font-weight: 400;
}

body .events-highlights-section .highlight-description{
    position: relative;
    opacity: 0;
    max-height: 0px;
    top: 20px;
}

body .events-highlights-section .highlight-toggle{
    position: absolute;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: #A3A3A3;
    border-radius: 50%;
    line-height: 100%;
    font-size: 44px;
    color: #FFF;
    cursor: pointer;
}

body .events-register-section .register-container{
    padding: 70px 60px;
    background: transparent linear-gradient(180deg, #B9FEFE 0%,#00BAB3  100%) 0% 0% no-repeat padding-box;
    border-radius: 50px;
}

body .events-register-section .register-container .register-heading h2{
    margin-bottom: 40px;
}

body .events-register-section{
    margin-bottom: 120px;
}

body .events-highlights-section .highlights-container .highlight-item.active{
    background: #00BAB3;
    transition: 0.3s;
}

body .events-highlights-section .same-color .highlights-container .highlight-item.active{
    background: #FAFAFA;
    transition: 0.3s;
}

body .events-highlights-section .highlight-item .highlight-heading{
    opacity: 1;
    max-height: 1000px;
    transition: 0.3s 0.2s;
}

body .events-highlights-section .highlight-item.active .highlight-heading{
    opacity: 0;
    max-height: 0px;
    transition: 0.3s;
}

body .events-highlights-section .all-data .highlight-item.active .highlight-heading{
    opacity: 1;
    max-height: 1000px;
}

body .events-highlights-section .highlight-item .highlight-description{
    transition: 0.3s;
}

body .events-highlights-section .highlight-item.active .highlight-description{
    opacity: 1;
    max-height: 1000px;
    top: 0;
    transition: 0.3s 0.2s;
    padding-bottom: 50px;
}

body .events-highlights-section .all-data .highlight-item.active .highlight-description{
    padding-top: 20px;
   
}

body .events-highlights-section .highlights-container .highlight-item.active  .highlight-icon img{
    filter: brightness(0%) invert(100%);
}

body .events-highlights-section .highlight-item .highlight-toggle{
    transition: 0.3s;
    z-index: 2;
}

body .events-highlights-section .highlight-item.active .highlight-toggle{
    transform: rotate(45deg);
    transition: 0.3s;
}

body .events-container.event-featured .event-item .item-inner{
    display: flex;
    background: #F8F8F8;
    padding: 60px;
    border-radius: 50px;
    align-items: center;
}

body .events-container.event-featured .event-item .event-text{
    width: 45%;
    padding-right: 40px;
}

body .events-container.event-featured .event-item .event-image{
    width: 55%;
    display: flex;
}

body .events-container.event-featured .event-item .event-image img{
    border-radius: 40px;
    height: 460px;
    width: 100%;
    object-fit: cover;
}

body .events-container .event-date p{
    text-transform: uppercase;
}

body .events-container .event-item .event-cta-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 5px;
}

body .events-container .event-item .event-cta-container .main-cta {
    margin: 4px;
}

body .events-container.event-featured .event-date p{
    margin-bottom: 25px;
}

body .events-container.event-featured .event-item .event-cta-container{
    margin-top: 30px;
}

body .events-container.event-monthly{
    margin-top: 80px;
}

body .events-container.event-monthly .event-heading h2{
    margin-bottom: 40px;
}

body .events-container.event-monthly .event-item .item-inner{
    background: #F8F8F8;
    padding: 20px;
    border-radius: 40px;
    align-items: center;
    margin: 15px;
}

body .events-container.event-monthly .event-inner{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    left: -15px;
}

body .events-container.event-monthly .event-item{
    width: calc(33.33%);
}

body .events-container.event-monthly .event-item .event-image img{
    border-radius: 40px;
    height: 350px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

body .events-container.event-monthly .event-item .event-cta-container {
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

body .events-container.event-monthly .event-name h3{
    font-weight: 700;
}

body .college-stories-slider .slide-heading h2{
    font-weight: 700;
}

body .job-popup-container .job-popup.scroll-popup{
    align-items: flex-start;
}

body .job-popup .popup-scroll-section{
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    justify-content: center;
    padding: 0px;
}

body.scroll-popup{
    overflow: hidden;
}

body .college-stories-slider .job-popup .stats-section{
    position: relative;
    display: flex;
    width: calc(100% + 12px);
    left: -6px;
    margin-top: 80px;
}

body .college-stories-slider .job-popup .stats-section .stat-item{
    border: 1px solid #707070;
    padding: 30px;
    margin: 0px 6px;
    border-radius: 30px;
}

body .college-stories-slider .job-popup .stats-section .stat-item p{
    margin-bottom: 0px;
}

body .college-stories-slider .job-popup .stats-section .stat-icon img{
    max-width: 140px;
}

body .college-stories-slider .job-popup .other-links-sections{
    margin-bottom: 80px;
}

body .college-stories-slider .job-popup .other-links-sections .link-section{
    position: relative;
    border: 1px solid #707070;
    padding: 15px;
    border-radius: 30px;
    margin: 12px 0px;
}

body .college-stories-slider .job-popup .other-links-sections .link-section a{
    position: relative;
    display: flex;
    align-items: center;
}

body .college-stories-slider .job-popup .link-section .link-image{
    display: flex;
    height: fit-content;
    width: 150px;
}

body .college-stories-slider .job-popup .link-section .link-heading{
    width: calc(100% - 150px);
    padding: 0 40px;
}

body .college-stories-slider .job-popup .link-section .link-heading h2{
    font-weight: 700;
    margin-bottom: 0px;
}

body .college-stories-slider .job-popup .link-section .link-image img{
    margin-bottom: 0px;
    border-radius: 25px;
}

body .job-popup .popup-scroll-section .popup-inner{
    position: relative;
    margin: 15vh 0px;
    height: fit-content;
    padding-top: 80px;
}

body .job-popup .popup-scroll-section .popup-inner .popup-close{
    top: 30px;
    right: 30px;
}

body .college-stories-slider .job-popup-container .job-popup .popup-inner{
    padding-right: 60px;
}

body .college-stories-slider .job-popup-container .popup-image img{
    max-height: 280px;
    margin-bottom: 40px;
}

body .college-stories-slider .job-popup-container .popup-heading h2,
body .college-stories-slider .job-popup-container .footer-heading h2{
    font-weight: 700;
    max-width: 440px;
    margin: 40px auto;
}

body .student-testimonies-section .student-testimonies-navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #707070;
    max-width: fit-content;
    margin: 20px auto;
    background: #FFF;
    padding: 5px;
    border-radius: 50px;
}

body .student-testimonies-section .student-testimonies-navigation .nav-item p{
    padding: 5px 24px;
    border-radius: 30px;
    transition: 0.3s;
    cursor: pointer;
}

body .student-testimonies-section .student-testimonies-navigation .nav-item.active p{
    background: #00BAB3;
    transition: 0.3s;
    color: #FFF;
}

body .student-testimonies-section .student-testimonies-navigation p{
    margin-bottom: 0px;
}

body .student-testimonies-section .student-testimonies-slider{
    max-height: 0px;
    pointer-events: none;
    opacity: 0;
}

body .student-testimonies-section .student-testimonies-slider.active{
    max-height: 1000px;
    pointer-events: auto;
    opacity: 1;
}

body .student-testimonies-section .student-testimonies-slider .elementor-carousel-image{
    border-radius: 50px;
}

body .student-testimonies-section .student-testimonies-slider{
    position: relative;
}

body .student-testimonies-section .student-testimonies-slider .elementor-swiper-button{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3C4043;
    font-size: 24px;
    color: #fff;
    border: none;
    bottom: -100px !important;
    top: auto !important;
    left: 50%;
    transform: translateX(-50%) !important;
}
body .student-testimonies-section .student-testimonies-slider .elementor-swiper-button svg{
    opacity: 0;
}

body .student-testimonies-section .student-testimonies-slider .elementor-swiper-button.elementor-swiper-button-prev{
    left: calc(50% - 30px);
    background: #A3A3A3;
}

body .student-testimonies-section .student-testimonies-slider .elementor-swiper-button.elementor-swiper-button-next{
    left: calc(50% + 30px);
}

body .student-testimonies-section .student-testimonies-slider .elementor-swiper-button:before{
    position: absolute;
    content: '→';
    top: 50%;
    left: 50%;
    font-size: 24px;
    transform: translate(-50%, -50%) rotate(180deg);
}

body .student-testimonies-section .student-testimonies-slider .elementor-swiper-button.elementor-swiper-button-next:before{
    transform: translate(-50%, -50%) rotate(0deg);
}

body.single-resources .resouces-featured-section{
    padding-top: 80px;
    padding-bottom: 20px;
    /* max-width: 860px; */
}

body.single-resources .resouces-featured-section .event-desc-text{
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

body.single-resources .resouces-featured-section .event-desc-text h3{
    font-weight: 700;
}

body.single-resources .resouces-featured-section .event-date p{
    text-transform: uppercase;
    margin-bottom: 40px;
}

body.single-resources .media-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #707070;
    max-width: fit-content;
    margin: 20px auto;
    background: #FAFAFA;
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 40px;
}

body.single-resources .media-toggle .toggle-item p{
    padding: 5px 24px;
    border-radius: 30px;
    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 0px;
    min-width: 200px;
    text-align: center;
}

body.single-resources .media-toggle .toggle-item.active p{
    background: #00BAB3;
    transition: 0.3s;
    color: #FFF;
}

body.single-resources .media-items .media-item{
    max-height: 0px;
    pointer-events: none;
    opacity: 0;
}

body.single-resources .media-items .media-item.active{
    max-height: 1000px;
    pointer-events: auto;
    opacity: 1;
}

body.single-resources .media-items .media-item video,
body.single-resources .media-items .media-item audio,
body.single-resources .media-items .media-item iframe{
    width: 100%;
}

body.single-resources .media-items .media-item.video{
    background: #F8f8f8;
    padding: 40px;
    border-radius: 40px;
}

body.single-resources .media-items .media-item iframe{
    height: 608px;
    border-radius: 25px;
}

body.single-resources .media-items .media-item audio{
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    display: block;
    height: 60px;
}

body.single-resources .resources-media-section{
    padding-top: 20px;
    padding-bottom: 40px;
    /* max-width: 980px; */
}

body.single-resources .resources-authors-section{
    padding-top: 20px;
    padding-bottom: 60px;
}

body.single-resources .resources-authors-section .authors-container{
    display: flex;
    justify-content: center;
}

body.single-resources .resources-authors-section .authors-container .author-item{
    max-width: 210px;
    margin: 20px 10px;
}

body.single-resources .resources-authors-section .author-item .author-image{
    display: flex;
    background: #FAFAFA;
    border-radius: 35px;
    overflow: hidden;
}

body.single-resources .resources-authors-section .author-item .author-name p{
    margin-bottom: 5px;
    margin-top: 20px;
}

body.single-resources .resources-authors-section .author-item .author-role p{
    margin-bottom: 0px;
}

body.single-resources .resources-other-information{
    padding-top: 20px;
    padding-bottom: 60px;
}

body.single-resources .resources-readmore-section{
    padding-top: 60px;
    padding-bottom: 60px;
}

body.single-resources .main-toggle-container{
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

body.single-resources .main-toggle-container .toggle-item{
    position: relative;
    margin: 15px 0px;
}

body.single-resources .main-toggle-container .toggle-item .toggle-heading{
    display: flex;
    background: #F0F0F0;
    border-radius: 32px;
    padding: 15px 20px;
    cursor: pointer;
    align-items: center;
}

body.single-resources .main-toggle-container .toggle-item .toggle-heading h4{
    margin-bottom: 0px;
    margin-top: 0px;
}

body.single-resources .main-toggle-container .toggle-item .toggle-content p{
    padding: 20px 0;
}

body.single-resources .main-toggle-container .toggle-item .toggle-heading span{
    position: relative;
    border-left: 2px solid #a3a3a3;
    border-bottom: 2px solid #a3a3a3;
    width: 10px;
    height: 10px;
    margin-left: 5px;
    margin-bottom: 5px;
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 18px;
    transform-origin: center;
    top: 0px;
}

body.single-resources .main-toggle-container .toggle-item.active .toggle-heading span{
    transform: rotate(-225deg);
    top: 5px;
}

body.single-resources .main-toggle-container .toggle-item .toggle-content{
    max-height: 0px;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
}

body.single-resources .main-toggle-container .toggle-item.active .toggle-content{
    max-height: 1000px;
    pointer-events: auto;
    opacity: 1;
}

body .resource-main-container,
body .stories-main-container{
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

body .resource-main-container .resource-item,
body .stories-main-container .stories-item{
    position: relative;
    width: calc(50% - 30px);
    background: #fafafa;
    margin: 15px;
    border-radius: 30px;
    padding: 35px;
}

body .resource-main-container .resource-item.featured,
body .stories-main-container .stories-item.featured{
    width: calc(100% - 30px);
}

body .resource-main-container .resource-item .event-date p,
body .stories-main-container .stories-item .event-date p{
    text-transform: uppercase;
    margin-bottom: 20px;
}

body .resource-main-container .resource-item .resource-text,
body .stories-main-container .stories-item .stories-text{
    padding-top: 40px;
}

body .resource-main-container .resource-item .event-name,
body .stories-main-container .stories-item .event-name{
    min-height: 120px;
    margin-bottom: 5px;
}

body .stories-main-container .stories-item .event-name h2{
    display: block;
}

body .resource-main-container .resource-item .resource-image,
body .stories-main-container .stories-item .stories-image{
    display: flex;
    overflow: hidden;
    border-radius: 25px;
    background: #f0eeef;
}

body .resource-main-container .resource-item .resource-image img{
    position: relative;
    height: 300px;
    width: 100%;
    transform: scale(1.7);
    transform-origin: top center;
    object-fit: cover;
    top: -60px;
}

body .stories-main-container .stories-item .stories-image img{
    height: 300px;
    width: 100%;
    transform-origin: center;
    object-fit: cover;
}

body .resource-main-container .resource-item.featured .resource-image img{
    height: 440px;
    transform: scale(1);
    transform-origin: center;
    top: 0px;
}

body .stories-main-container .stories-item.featured .stories-image img{
    height: 440px;
    width: 100%;
    transform-origin: center;
    object-fit: cover;
}

body .resource-main-container .resource-item.featured .event-name,
body .stories-main-container .stories-item.featured .event-name{
    min-height: auto;
}

body .search-main-section .search-container{
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

body .search-main-section .search-heading{
    width: 30%;
}

body .search-main-section .search-form-container{
    width: 70%;
    display: flex;
    justify-content: flex-end;
}

body .search-main-section .form-inner{
    display:flex;
    align-items: center;
}

body .search-main-section .search-heading h3{
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 0px;
}

body .search-main-section .search-icon{
    display: flex;
    align-items: center;
    margin: 0 10px;
}

body .search-main-section .search-icon svg{
    min-width: 25px;
}

body .search-main-section .search-icon svg path{
    fill: #3C4043;
}

body .search-main-section .search-form form{
    display: flex;
    align-items: center;
}

body .search-main-section .search-form input{
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    border-radius: 0px;
    padding: 4px;
    padding-right: 15px;
    width: 155px;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 100%;
}

body .search-main-section .search-form input:focus,
body .search-main-section .search-form input:visited{
    border: none;
    outline: none;
}

body .search-main-section .search-form input::placeholder{
    font-size: 18px;
    color: #3C4043;
}

body .search-main-section .search-form input:focus{
    border-bottom: 1px solid #3C4043;
}

body .search-main-section .search-form input:focus::placeholder{
    color: #3c404396;
}

body .search-main-section .search-form .search-submit{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #00BAB3;
    font-size: 16px;
    color: #fff;
    border: none;
    padding: 0px;
    /* margin-left: -25px; */
    top: -2px;
}

body .search-main-section .search-form .search-submit:hover{
    background: #3C4043;
}

body .search-main-section .search-form .search-submit span{
    position: relative;
    display: flex;
    line-height: 100%;
    top: 1px;
}

/* Search Filters */

body .search-filters-section{
    padding-top: 30px;
    padding-bottom: 20px;
}

body .search-filters-section .section-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

body .search-filters-section .filters-container{
    display: flex;
    margin-left: 15px;
}

body .search-filters-section .filter-heading h3{
    margin-bottom: 0px;
    margin-top: 0px;
}

body .search-filters-section .search-options{
    position: relative;
    width: 100%;
    min-width: 230px;
    margin-right: 20px;
}

body .search-filters-section .search-options .option-selected {
    background: #fafafa;
    padding: 8px 18px;
    border: 1px solid #d1d1d1;
    border-radius: 25px 25px 25px 25px;
    cursor: pointer;
}

body .search-filters-section .search-options.open .option-selected {
    border-bottom: none;
    border-radius: 25px 25px 0px 0px;
}

body .search-filters-section .search-options .option-selected p {
    margin-bottom: 0px;
    margin-top: 0px;
    font-weight: 400;
}

body .search-filters-section .search-options .all-options {
    position: absolute;
    background: #fafafa;
    border: 1px solid #d1d1d1;
    width: 100%;
    border-radius: 0 0 0px 0px;
    border-top: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    max-height: 200px;
    overflow-y: scroll;
}

body .search-filters-section .search-options.open .all-options {
    opacity: 1;
    pointer-events: auto;
}

body .search-filters-section .search-options .all-options p {
    background: #fafafa;
    padding: 8px 18px;
    margin-bottom: 0px;
    margin-top: 0px;
    cursor: pointer;
}

body .search-results-section{
    padding-top: 30px;
    padding-bottom: 60px;
}

body .search-results-section .search-count p{
    margin-bottom: 30px;
}

body .search-results-section .search-items-container{
    position: relative;
}

body .search-results-section .search-items-container .search-item{
    width: 100%;
    display: flex;
    align-items: center;
    margin: 15px 0px;
}

body .search-results-section .search-items-container .search-item .resource-text,
body .search-results-section .search-items-container .search-item .stories-text{
    width: 45%;
    padding-right: 30px;
}

body .search-results-section .search-items-container .search-item .resource-image,
body .search-results-section .search-items-container .search-item .stories-image{
    width: 55%;
}

body .search-results-section .search-items-container .search-item .resource-image img,
body .search-results-section .search-items-container .search-item .stories-image img{
    height: 400px;
}

body .search-results-section .results-container .no-results-image{
    max-width: 260px;
    margin-bottom: 20px;
}

body .search-results-section .search-items-container .search-item .resource-text{
    height: 100%;
    padding-top: 5px;
    display: flex;
    flex-wrap: wrap;
}

body .search-results-section .search-items-container .search-item .resource-text .text-cta{
    display: flex;
    align-items: flex-end;
    width: 100%;
    padding-bottom: 0px;
}

/* Search Preloader */

body .search-results-main-section .loading-preoader{
    position: fixed;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255, 0.95);
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s 0.3s cubic-bezier(.77,0,.175,1);
    display: flex;
    align-items: center;
    justify-content: center;
}

body .search-results-main-section .loading-preoader .preloader-elem{
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(.77,0,.175,1);
    height: 200px;
    width: 200px;
    background: url('../../../../../wp-content/uploads/2025/02/preloader.gif') center/contain no-repeat;
}

body .search-results-main-section .loading-preoader .preloader-circle{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #00BAB3;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: none;
}

body .search-results-main-section .loading-preoader.active{
    pointer-events: auto;
    opacity: 1;
    transition: all 0.4s cubic-bezier(.77,0,.175,1);
}

body .search-results-main-section .loading-preoader.active .preloader-elem{
    pointer-events: auto;
    opacity: 1;
    transition: all 0.3s 0.3s cubic-bezier(.77,0,.175,1);
}

body .pagination-navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
    width: 100%;
}

body .mk-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

body .pagination-navigation a{
    position: relative;
}

body .pagination-navigation .slider__control.prev{
    margin-right: 0px;
}

body .pagination-navigation a:nth-child(1){
    margin-right: 15px;
}

button.plyr__play-large {
    color: #3498db;
    border-color: #3498db;
    background: #3498db;
    border-radius: 6px;
}

button.plyr__play-large:hover{
    background: #3498db;
}

button.plyr__play-large svg{
    fill: #FFF;
}

body .reset-filter-option{
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0px;
    opacity: 0;
    pointer-events: none;
}

body .reset-filter-option.active{
    opacity: 1;
    pointer-events: auto;
}

body .reset-filter-option .reset-filter h3{
    font-weight: 700;
    cursor: pointer;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Sermons */

body.single-sermons .sermon-featured-section{
    position: relative;
    min-height: 82vh;
    background-size: 20%;
    background-repeat: repeat;
    background-position: center;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding: 0 20px;
}

body.single-sermons .sermon-featured-section:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00BAB39A;
}

body.single-sermons .sermon-featured-section .section-inner{
    position: relative;
    z-index: 1;
}

body.single-sermons .sermon-video-section{
    padding-top: 80px;
    padding-bottom: 80px;
}

body.single-sermons .sermon-video-section video{
    max-width: 100%;
}

body.single-sermons .sermon-video-section iframe{
    height: 67vh;
    width: 100%;
}

body.single-sermons .sermon-series-section{
    padding-bottom: 80px;
}

body .sermon-series-container{
    position: relative;
    padding-top: 30px;
}

body .sermon-series-container .sermon-series-item{
    background: #FBFBFD;
    margin-bottom: 30px;
    border-radius: 50px;
    padding: 25px;
}

body .sermon-series-item .series-header{
    position: relative;
    display: flex;
}

body .sermon-series-item .series-header .series-image{
    width: 140px;
    background: #00BAB3;
    height: 140px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .sermon-series-item .series-header .series-image img{
    padding: 20px;
}

body .sermon-series-item .series-header .series-content{
    width: calc(100% - 140px);
    padding-left: 30px;
}

body .sermon-series-item .series-date p{
    text-transform: uppercase;
    margin-bottom: 8px;
}

body .sermon-series-item .series-name p{
    margin-bottom: 10px;
}

body .sermon-series-item .series-desc p{
    margin-bottom: 20px;
}

body .sermon-series-item .series-cta-container{
    display: flex;
}

body .sermon-series-item .series-cta-container .listen-cta a{
    margin-right: 10px;
}

body .sermon-series-item .series-footer{
    position: relative;
}

body .sermon-series-item .series-audio audio{
    display: flex;
    width: 100%;
    height: 40px;
    margin-top: 15px;
}

body.single-sermons .sermon-resources-container{
    padding-top: 30px;
    padding-bottom: 80px;
}

body.single-sermons .about-series-container{
    max-width: 760px;
    margin: 80px auto;
    margin-bottom: 60px;
}

body.single-sermons .about-series-container .small-text p{
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Search Sermons Filters */

body .search-filters-section.sermons-filter .search-form-container{
    margin-right: 10px;
}

body .search-filters-section.sermons-filter{
    background: #F0F0F0;
    border-radius: 80px;
}

body .search-filters-section.sermons-filter .section-inner{
    padding: 10px 20px;
    flex-wrap: nowrap;
}

body .search-filters-section.sermons-filter .search-form-container .form-inner{
    background:#fafafa;
    border: 1px solid #d1d1d1;
    border-radius: 25px;
    padding: 4px 7px 7px 0px;
}

body .search-main-section .search-form input{
    border-bottom: none !important;
}

body .sermon-main-container .sermon-item.featured{
    background: #F8F8F8;
    border-radius: 50px;
    padding: 40px;
}

body .sermon-main-container .sermon-item .sermon-image{
    min-height: 50vh;
    background-size: 20%;
    background-repeat: repeat;
    background-position: center;
    background-color: #F0F0F0;
    border-radius: 25px;
    margin-bottom: 40px;
    width: 100%;
}

body .search-results-main-section .sermon-item{
    background: #F8F8F8;
    border-radius: 50px;
    padding: 40px;
}

body .search-results-main-section .search-results-section .search-items-container{
    width: calc(100% + 60px);
    left: -30px;
}

body .search-results-main-section .search-results-section .search-items-container .sermon-item{
    display: block;
    width: calc(50% - 30px);
    margin: 15px;
}

body .search-results-main-section .sermon-item .sermon-image{
    min-height: 50vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border-radius: 25px;
    margin-bottom: 40px;
    width: 100%;
}

body .search-filters-section .search-options{
    min-width: 185px;
    margin-right: 10px;
}

body .search-filters-section.stories-filter .search-options,
body .search-filters-section.resource-filter .search-options{
    min-width: 230px;
    margin-right: 10px;
}

/* CG Filter CSS */

body .search-filters-section.cg-filter .section-inner{
    background: #F8F8F8;
    border-radius: 80px;
    padding: 30px;   
}

body .search-filters-section.cg-filter .search-options{
    width: fit-content;
    display: flex;
    align-items: center;
    min-width: auto;
}

body .search-filters-section .search-options .radio-options{
    display: flex;
    width: 100%;
    align-items: center;
}

body .search-filters-section .search-options .radio-options .option-item{
    position: relative;
    padding-left: 25px;
    margin-bottom: 0px;
    margin-left: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

body .search-filters-section .search-options .radio-options .option-item[data-count="0"]{
    display: none;
}

body .search-filters-section .search-options .radio-options .option-item:before{
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    background: #FFF;
    border: 1px solid #707070;
    border-radius: 50%;
    transform: translateY(-50%);
    margin-top: -2px;
}

body .search-filters-section .search-options .radio-options .option-item:after{
    position: absolute;
    content: "";
    top: 50%;
    left: 3px;
    width: 12px;
    height: 12px;
    border: 1px solid #00BAB3;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #00BAB3;
    opacity: 0;
    transition: 0.3s;
    margin-top: -2px;
}

body .search-filters-section .search-options .radio-options .option-item.active:after{
    opacity: 1;
    transition: 0.3s;
}

/* Single Stories CSS */

body .stories-featured-section{
    max-width: 720px;
    padding-top: 80px;
    padding-bottom: 80px;
}

body .stories-featured-section .event-desc-text{
    max-width: 440px;
    margin: 0 auto;
    padding-top: 10px;
}

body .stories-image-section{
    padding: 0px;
}

body .stories-image-section .stories-image{
    max-height: 70vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

body .stories-meta-section{
    max-width: 660px;
}

body .stories-meta-section .stories-date-author{
    display: flex;
    padding-top: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e3e3e3;
    margin-bottom: 40px;
}

body .stories-meta-section .stories-date{
    width: 55%;
    text-align: left;
}

body .stories-meta-section .stories-author{
    width: 45%;
    text-align: right;
}

body .stories-content-section{
    max-width: 660px;
}

body .stories-content-section p{
    color: #A3A3A3;
}

body .stories-content-section img{
    position: relative;
    margin-bottom: 25px;
    display: block;
    border-radius: 25px;
}

body .stories-content-section h2{
    font-weight: 700;
    margin-bottom: 25px;
}

body .stories-content-section .elementor-element{
    padding: 0px;
}

body .post-box-item {
    display: flex;
    background: #f8f8f8;
    padding: 40px 60px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

body .post-box-item .box-text p {
    margin-bottom: 0px;
    padding-right: 30px;
}

body .post-box-item .box-text{
    width: 100%;
}

body .stories-content-section .stories-share-download{
    margin-bottom: 100px;
}

body .college-stories-section .events-container.event-monthly{
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

body .college-stories-section .events-container.event-monthly .event-item .item-inner{
    background: #FFF;
}

body .college-stories-section .event-name{
    min-height: 60px;
}

body .college-stories-section{
    padding-top: 80px;
    padding-bottom: 80px;
}

body .stories-content-section .share-links{
    display: flex;
    margin-bottom: 50px;
    border-bottom: 3px solid #e3e3e3;
}

body .stories-content-section .share-links img{
    border-radius: 0px;
    max-height: 20px;
    object-fit: contain;
}

body .stories-content-section .share-links .share-link{
    margin-right: 20px;
}

body .stories-content-section .stories-close img{
    border-radius: 0px;
    max-width: 28px;
    margin-top: -10px;
    margin-bottom: 40px;
}

body .stories-content-section .share-links .share-link{
    position: relative;
}

body .stories-content-section .share-links .share-link span{
    position: absolute;
    top: -35px;
    left: -10px;
    width: fit-content;
    height: auto;
    font-size: 14px;
    background: #92FFF7;
    color: #008078;
    border-radius: 20px;
    padding: 4px 25px;
    pointer-events: none;
}

/* Marker CSS */

body .acf-map{
    border-radius: 25px;
}

body .acf-map .gm-style-iw{
    max-height: fit-content !important;
    background: #FFF;
    border: 1px solid #707070;
    border-radius: 18px;
    box-shadow: none;
}

body .acf-map .gm-style-iw-ch{
    padding-top: 0px;
}

body .acf-map .gm-style-iw-tc{
    display: none;
}

body .acf-map .gm-style-iw-d{
    margin-top: -20px
}

body .acf-map .gm-style-iw-chr button{
    height: 40px !important;
    width: 40px !important;
}

body .acf-map .marker-content{
    min-width: 210px;
    height: fit-content;
    overflow: hidden;
    padding: 0px 15px;
    padding-bottom: 5px;

}

body .acf-map .marker-content .marker-image{
    position: relative;
    display: block;
    margin-bottom: 8px;
    width: 100%;
}

body .acf-map .marker-content .marker-image img{
    width: 100%;
    height: 90px;
    max-width: 180px !important;
    object-fit: cover;
    background: #3e3e3e;
    border-radius: 10px;
}

body .acf-map .marker-content .marker-title p{
    margin-bottom: 10px;
}

.acf-map div[title="DSRU"]{
    /* border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 1;
    background: #00BAB3;
    transform: scale(0.9); */
    pointer-events: none;
}

.acf-map div[title="DSRU"][tabindex="0"]{
    /* border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 1;
    background: #00BAB3;
    animation-name: maplocation;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    transform: scale(0.8); */
}

@keyframes maplocation{
    from{
        transform: scale(0.66);
    }
    to{
        transform: scale(0.8);
    }
}

/* Audio CSS */

body .series-audio{
    margin-top: 20px;
}

body .series-audio .audio-controls{
    display: flex;
    align-items: center;
}

body .series-audio .audio-controls .audio-seek{
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body .series-audio .audio-controls .audio-seek svg{
    position: relative;
    transform: rotate(-20deg);
    min-width: 12px;
    left: 3px;
}

body .series-audio .audio-controls .audio-seek svg path{
    fill: #A3A3A3;
}

body .series-audio .audio-controls .audio-seek span{
    margin-top: -6px;
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #A3A3A3;
    letter-spacing: 1px;
}

body .series-audio .audio-controls .audio-seek.forward svg{
    transform: rotate(20deg) scaleX(-1);
    left: -2px;
}

body .series-audio .audio-controls .audio-play-pause{
    display: flex;
    width: 50px;
    height: 50px;
    background: #A3A3A3;
    border-radius: 50%;
    margin: 0 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body .series-audio .audio-controls .audio-play-pause .play-icon{
    height: 18px;
}

body .series-audio .audio-controls .audio-play-pause .play-icon svg{
    height: 18px;
    width: fit-content;
}

body .series-audio .audio-controls .audio-play-pause .play-icon svg path{
    fill: #FFF;
}

/* Home Stories Slider */

.slider.home-stories-slider .slider__item .slider-inner{
    padding: 25px;
    border-radius: 25px;
}

.slider.home-stories-slider .slider__container .slider__item img{
    min-height: 380px;
    margin-bottom: 10px;
}

.slider.home-stories-slider .slider__container .slide-heading h3{
    font-weight: 700;
}

/* Community Groups CSS */

.home-communitygroup-slider .slider__item .slider-inner{
    padding: 25px;
    border-radius: 25px;
    /* height: 100%; */
}

.home-communitygroup-slider .slider__container .slider__item img{
    height: 320px;
}

.home-communitygroup-slider .slider__container .slide-heading{
    /* min-height: 120px; */
}

.custom-cg-noresults-section{
    position: relative;
    opacity: 0;
    pointer-events: none;
    max-height: 0px;
    transition: 0.3s;
}

.custom-cg-noresults-section.active{
    opacity: 1;
    pointer-events: auto;
    max-height: 800px;
    transition: 0.3s;
}

/* Tooltip CSS */

body .tooltip{
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

body .tooltip:hover{
    color: #00bab3;
    transition: 0.3s;
}

body .tooltip-item{
    position: absolute;
    min-width: 290px;
    width: 100%;
    height: fit-content;
    border: 1px solid #A3A3A3;
    padding: 15px;
    background: #F8F8F8;
    border-radius: 15px;
    top: calc(100% + 0px);
    left: 0;
    z-index: 9;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

body .tooltip-item.active{
    opacity: 1;
    pointer-events: auto;
    transition: 0.3s;
}

body .tooltip-item .tooltip-close{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

body .tooltip-item .tooltip-close:before,
body .tooltip-item .tooltip-close:after{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 2px;
    width: 100%;
    background: #3C4043;
}

body .tooltip-item .tooltip-close:after{
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Tooltip Copy CSS */

body #content .tooltip-copy a{
    position: relative;
    min-width: 0px;
    width: 36px;
    height: 36px;
    padding: 5px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .tooltip-copy a img{
    max-width: 16px;
    margin-bottom: 0px !important;
    border-radius: 0px !important;
    height: auto !important;
}

body .tooltip-copy a:hover img{
    filter: grayscale(100%) brightness(100);
}

body .tooltip-copy a:before{
    position: absolute;
    content: 'COPIED!';
    top: -20px;
    color:  #A3A3A3;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.5px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
}

body .tooltip-copy.copied a:before{
    opacity: 1;
    pointer-events: auto;
}

/* Ministry Page CSS */

body  .custom-firstfold-section{
    position: relative;
}

body .custom-firstfold-section:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00BAB39A;
}

body .custom-firstfold-section .custom-page-section{
    position: relative;
    min-height: calc(100vh - 168px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-top: 0px;
}

body .custom-welcome-cards-section .welcome-ministry{
    background: #F8F8F8;
    padding: 40px;
    border-radius: 40px;
    margin-bottom: 25px;
}

body .custom-welcome-cards-section .welcome-ministry.no-padding{
    padding: 0px;
}

body .custom-welcome-cards-section .welcome-ministry .welcome-container{
    position: relative;
    border-radius: 25px;
    min-height: 608px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    /* overflow: hidden; */
}

body .custom-welcome-cards-section .welcome-ministry .welcome-container .gwa-bg-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 25px;
}

body .custom-welcome-cards-section .welcome-ministry .welcome-container .gwa-bg-video > iframe,
body .custom-welcome-cards-section .welcome-ministry .welcome-container .gwa-bg-video > video{
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: calc(100% + 80px);
    pointer-events: none;
    overflow: hidden;
    
}

body .custom-welcome-cards-section .welcome-ministry .welcome-container:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 25px;
}

body .custom-welcome-cards-section .welcome-ministry .welcome-container .welecome-inner,
body .custom-welcome-cards-section .welcome-ministry .welcome-container .welcome-inner{
    position: relative;
    z-index: 2;
}

body .custom-welcome-cards-section .welcome-cards{
    display: flex;
    gap: 25px;
}

body .custom-welcome-cards-section .welcome-cards .job-popup-container{
    background: #F8F8F8;
    padding: 40px;
    border-radius: 40px;
    width: calc(50% - 25px);
}

body .custom-welcome-cards-section .welcome-cards .job-popup-container .job-popup-image img{
    border-radius: 25px;
    height: 400px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

body .custom-welcome-cards-section .welcome-cards .job-popup-heading h2{
    font-weight: 700;
}

body .custom-welcome-cards-section .welcome-cards .job-popup-cta a span{
    font-size: 36px;
    font-weight: 400;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #A3A3A3;
    border-radius: 30px 30px 30px 30px;
    padding: 0px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .custom-stories-section .slider__container .slide-image img{
    height: 400px;
}

body .custom-stories-slider .slider__item{
    height: 100%;
}

body .custom-events-section .events-container.event-monthly{
    margin-top: 0px;
}

body .custom-events-section .events-container.event-monthly .event-item{
    padding: 0px;
}

body .custom-events-section  .events-container.event-monthly .event-item .item-inner{
    margin: 10px;
}

body .student-testimonies-slider .watch-video-cta.play-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

body .student-testimonies-slider .watch-video-cta.play-icon a{
    background: #A3A3A3;
    height: 70px;
    width: 70px;
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px !important;
    border-radius: 40px !important;
}

body .student-testimonies-slider .watch-video-cta.play-icon svg{
    width: 30px;
    height: 30px;
    position: relative;
    left: 3px;
    top: 1px;
}

body .student-testimonies-slider .slider-inner{
    background: #fff;
}

body .student-testimonies-slider .watch-video-main{
    background-size: cover !important;
    /* background-size: 120% !important; */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 608px;
    border-radius: 25px;
}

body .student-testimonies-slider .slider_navigation{
    justify-content: center;
}

body .custom-team-section .ministries-team-slider{
    margin-top: 0px;
    margin-bottom: 0px;
}

body .custom-events-section .slider[data-all="1"] .slider__container,
body .custom-events-section .slider[data-all="2"] .slider__container,
body .custom-events-section .slider[data-all="3"] .slider__container,

body .custom-team-section .slider[data-all="1"] .slider__container,
body .custom-team-section .slider[data-all="2"] .slider__container,
body .custom-team-section .slider[data-all="3"] .slider__container{
    justify-content: center;
}

body .custom-events-section .slider[data-all="1"] .slider_navigation,
body .custom-events-section .slider[data-all="2"] .slider_navigation,
body .custom-events-section .slider[data-all="3"] .slider_navigation,

body .custom-team-section .slider[data-all="1"] .slider_navigation,
body .custom-team-section .slider[data-all="2"] .slider_navigation,
body .custom-team-section .slider[data-all="3"] .slider_navigation{
    display: none;
}

body.page-template .section-heading h2{
    margin-bottom: 40px;
}

body .multiple-columns-container{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 20px;
}

body .multiple-columns-container .multiple-column{
    background: #F8F8F8;
    border-radius: 40px;
    width: calc(50% - 20px);
    padding: 35px;
}

body .multiple-columns-container .multiple-column.full-width{
    width: calc(100%);
}

body .multiple-columns-container .multiple-column.full-width .column-content h4{
    max-width: 540px;
    margin: 0 auto;
}

body .multiple-columns-container .column-image img{
    margin-bottom: 20px;
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

body .multiple-columns-container .full-width .column-image img{
    margin-bottom: 20px;
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

body .multiple-columns-container .column-cta-container,
body .buttons-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

/* Get Involved CSS */

body .custom-vision-getinvolved-section .get-involved-columns{
    display: flex;
    gap: 30px;
}

body .custom-vision-getinvolved-section .get-involved-column{
    position: relative;
    display: flex;
    width: calc(50%);
    align-items: flex-start;
    justify-content: center;
    min-height: 700px;
    border-radius: 40px;
    background-position: top center !important;
    overflow: hidden;
    padding: 40px;
}

body .custom-vision-getinvolved-section .get-involved-column:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3C404380;
    z-index: 1;
}

body .custom-vision-getinvolved-section .get-involved-column .column-inner{
    position: relative;
    margin-top: 100px;
    z-index: 2;
}

body .custom-vision-getinvolved-section .getinvolved-heading h2{
    position: relative;
    margin-bottom: 300px;
}

body .custom-vision-getinvolved-section .getinvolved-heading h2 span{
    position: relative;
}

body .custom-vision-getinvolved-section .getinvolved-heading h2 span:after{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: calc(100% + 20px);
    height: 100%;
    border: 3px solid #00b9b2;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

body .custom-vision-getinvolved-section .getinvolved-heading h2 span:before{
    position: absolute;
    content: '';
    top: calc(100% - 5px);
    left: calc(50% - 30px);
    width: calc(45px);
    height: 280px;
    transform: translateX(-50%);
    background: url('../../../../../wp-content/uploads/2025/05/arrow.svg') center/cover no-repeat;
}

body .custom-vision-getinvolved-section .getinvolved-heading h2 span.second:before{
    transform: translateX(-50%) rotateY(180deg);
    left: calc(50% + 30px);
}

/* Achieve Section CSS */

body .custom-vision-achieve-section .vision-achieve-container{
    background: #F8F8F8;
    padding: 40px;
    border-radius: 40px;
    margin-bottom: 25px;
    padding-top: 60px;
}

body .custom-vision-achieve-section .vision-achieve-container .achieve-image img{
    border-radius: 25px;
    margin-top: 60px;
    height: 540px;
    width: 100%;
    object-fit: cover;
}

body .custom-vision-achieve-section .vision-achieve-container .achieve-content{
    margin-top: 20px;
    margin-bottom: 30px;
}

body .custom-vision-achieve-section .vision-achieve-container .achieve-content h4{
    font-weight: 700;
}

body .custom-globe-section .custom-page-section{
    padding: 0px;
}

body .custom-globe-section #sg3d-globe-container-wrapper,
body .custom-globe-section #sg3d-globe-container canvas{
    position: relative;
    max-width: 100%;
    width: 100% !important;
    height: fit-content !important;
}

body .custom-globe-section #sg3d-globe-container{
    height: calc(90vh - 100px) !important;
}

body .custom-globe-section #sg3d-globe-container-wrapper .sg3d-filters{
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 15px;
}

body .custom-globe-section #sg3d-globe-container-wrapper .sg3d-filters label{
    display: block;
    width: 100%;
    font-size: 15px;
    color: #00BAB3;
    font-weight: 700;
    text-transform: uppercase;
}

body .custom-globe-section #sg3d-globe-container-wrapper .sg3d-filters select{
    display: block;
    width: 100%;
    font-size: 15px;
    color: #3C4043;
    font-weight: 700;
}

body .custom-globe-section #sg3d-globe-container-wrapper .sg3d-instructions{
    font-size: 12px;
    margin-top: 0px;
    padding: 10px;
}

body .custom-highlights-section .events-highlights-section{
    margin-top: 0px;
    margin-bottom: 0px;
}

body .custom-highlights-section .events-highlights-section .highlights-container .highlight-item{
    min-height: 380px;
}

body .custom-highlights-section .events-highlights-section .highlights-container{
    left: 0;
    flex-wrap: nowrap;
    width: 100%;
}

body .custom-highlights-section .events-highlights-section .highlights-container .highlight-item{
    width: calc(100% - 0px);
    margin: 0px;
}

body .custom-highlights-section .events-highlights-section .slider__item .slider-inner{
    border-radius: 0px;
    background: transparent;
    padding: 0pc;
}

body .custom-globe-section #sg3d-globe-container-wrapper .sg3d-info-content table tr,
body .custom-globe-section #sg3d-globe-container-wrapper .sg3d-info-content table td,
body .custom-globe-section #sg3d-globe-container-wrapper .sg3d-info-content table th,
body .custom-globe-section #sg3d-globe-container-wrapper .sg3d-info-content table{
    border: none !important;
    padding: 0px;
    padding-top: 5px;
}

/* Banner Backgrounds CSS */

body .custom-firstfold-section.banner-gallery-section .custom-page-section{
    justify-content: flex-start;
}

body .custom-firstfold-section.banner-gallery-section:before{
    display: none;
}

body .custom-firstfold-section.banner-gallery-section .vision-gallery-container{
    position: relative;
}

body .custom-firstfold-section.banner-gallery-section .vision-gallery-container:before{
    position: absolute;
    content: '';
    top: 0;
    left: -20px;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 2;
}

body .custom-firstfold-section.banner-gallery-section .mega-main-heading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    
}

body .custom-firstfold-section.banner-gallery-section.separate-gallery .mega-main-heading{
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    z-index: 2;
    width: 100vw;
}
body .custom-firstfold-section.banner-gallery-section.separate-gallery .mega-main-heading h2{
    color: #A3A3A3;
}

body .custom-firstfold-section.banner-gallery-section.separate-gallery .vision-gallery-container:before{
    display: none;
}

/* Comunity Groups Single CSS */

body.single-communitygroups .cg-firstfold-section:before{
    display: none;
}

body.single-communitygroups .cg-featured-image{
    display: block;
    width: 100%;
    height: 500px;
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 25px;
}

body.single-communitygroups .cg-featured-image img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

body.single-communitygroups .section-heading h2{
    margin-bottom: 40px;
}

body.single-communitygroups .join-cg-container{
    padding: 60px;
    background: transparent linear-gradient(180deg, #00BAB3 0%, #B9FEFE 100%) 0% 0% no-repeat padding-box;
    border-radius: 30px;
}

/* Short Trips CSS */

body .overview-section .overview-description {
    max-width: 890px;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 40px;
}

body .events-highlights-section .long-cards .highlights-container .highlight-item{
    position: relative;
    padding: 40px;
    min-height: 520px;
    overflow: hidden;
}

body .events-highlights-section .longer-cards .highlights-container .highlight-item{
    position: relative;
    padding: 40px;
    min-height: 700px;
    overflow: hidden;
}

body .events-highlights-section .image-added .highlights-container .highlight-item{
    position: relative;
    overflow: hidden;
}

body .events-highlights-section .image-added .highlights-container .highlight-item .gwa-bg-video > iframe{
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 570px);
    height: 100%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
}

body .events-highlights-section .image-added .highlights-container .highlight-item .gwa-bg-video:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #000000 0%, #54545400 100%) 0% 0% no-repeat padding-box;
    opacity: 0.6;
    transition: 0.3s;
    z-index: 2;
}

body .events-highlights-section .image-added.all-data .highlights-container .highlight-item.active:before{
    background: #00BAB3;
    opacity: 1;
    transition: 0.3s;
}

body .events-highlights-section .image-added .highlights-container .highlight-item .item-inner{
    z-index: 2;
}

body .events-highlights-section .highlight-heading h2,
body .events-highlights-section .highlight-description h2{
    position: relative;
    z-index: 2;
}

body .custom-highlights-section .events-highlights-section .two-col .highlights-container,
body .custom-highlights-section .events-highlights-section .three-col .highlights-container{
    flex-wrap: wrap;
    gap: 25px;
}

body .custom-highlights-section .events-highlights-section .three-col .highlights-container .highlight-item{
    width: calc(33% - 15px);
    padding: 30px;
}

body .custom-highlights-section .events-highlights-section .two-col .highlights-container .highlight-item{
    width: calc(50% - 25px);
    padding: 40px;
}

body .eventfaqs-section .faq-item{
    max-width: 780px;
    margin: 0 auto;
    background: #f8f8f8;
    margin-top: 20px;
    border-radius: 10px;
}

body .eventfaqs-section .faq-item .faq-question{
    margin: 0 0px;
    cursor: pointer;
}

body .eventfaqs-section .faq-item .faq-question h3{
    font-weight: 700;
    margin-bottom: 0px;
    padding: 12px 20px;
}

body .eventfaqs-section .faq-item .faq-question h3:before{
    position: relative;
    content: '+';
    background: #A3A3A3;
    height: 32px;
    width: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 32px;
    color: #FFF;
    font-weight: 400;
    border-radius: 50%;
    transform: rotate(0deg);
    transition: 0.3s;
}

body .eventfaqs-section .faq-item.active .faq-question h3:before{
    transform: rotate(45deg);
    transition: 0.3s;
}

body .eventfaqs-section .faq-item .faq-answer{
    margin: 0px 20px;
    border-top: 3px solid #d7d7d7;
    max-height: 0px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

body .eventfaqs-section .faq-item.active .faq-answer{
    margin: 0px 20px;
    border-top: 3px solid #d7d7d7;
    max-height: 1000px;
    opacity: 1;
    pointer-events: auto;
    transition: 0.3s;
}

body .eventfaqs-section .faq-item .faq-answer h3{
    padding: 20px 0px;
    padding-top: 8px;
}


body .eventfaqs-section .faq-item.active .faq-answer ul{
    margin-left: 10px;
    list-style-position: inside;
}

body .eventfaqs-section .faq-item.active .faq-answer ol{
    list-style-position: inside;
    margin-left: 6px;
}

body .custom-otherposts-section .events-container .main-cta{
    margin-bottom: 10px;
    margin-top: 30px;
}

body .slider__container.imagegallery-container{
    width: calc(100% + calc((100vw - 1160px)/2));
}

body .slider__container.imagegallery-container .slider__item{
    width: calc(100% - 400px);
}

body .slider__container.imagegallery-container .slider__item .slider-inner{
    padding: 0px;
    background: transparent;
}

body .slider__container.imagegallery-container .slider__item .slider-inner img{
    margin-bottom: 0px;
    height: 480px;
}

body .boxitems-main-section .boxitems-container{
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
    
body .boxitems-main-section .boxitems-container .event-item{
    position: relative;
    width: calc(50% - 30px);
    background: #fafafa;
    margin: 15px;
    border-radius: 30px;
    padding: 25px;
}

body .boxitems-main-section .boxitems-container .event-item:first-child{
    width: calc(100% - 30px);
}

body .boxitems-main-section .boxitems-container .event-item:first-child .event-desc h3{
    max-width: 540px;
    margin: 0 auto;
}

body .boxitems-main-section .boxitems-container .event-item .event-image img {
    object-fit: cover;
    user-select: none;
    height: 400px;
    width: 100%;
    border-radius: 30px;
    margin-bottom: 20px;
    overflow: hidden;
}

body .boxitems-main-section .boxitems-container .event-item .main-cta{
    margin-bottom: 10px;
    margin-top: 30px;
}

/* Join Apply CSS */

body .custom-join-apply-section .join-apply-container{
    padding: 60px;
    background: transparent linear-gradient(180deg, #00BAB3 0%, #B9FEFE 100%) 0% 0% no-repeat padding-box;
    border-radius: 30px;
}

/* Small Container CSS */

body .small-container{
    max-width: 720px;
    margin: 0 auto;
}

body .smallest-container{
    max-width: 620px;
    margin: 0 auto;
}

body .large-container{
    max-width: 900px;
    margin: 0 auto;
}

body .larger-container{
    max-width: 1020px;
    margin: 0 auto;
}

/* Custom Location CSS */

body .custom-location-section .location-container{
    background: #F8F8F8;
    padding: 40px;
    border-radius: 40px;
    margin-bottom: 25px;
    display: flex;
    gap: 40px;
}

body .custom-location-section .location-container .location-col,
body .custom-location-section .location-container .heading-col{
    width: 50%;
}

body .custom-location-section .location-container .location-col .acf-map{
    height: 540px;
    margin: 0px;
}

/* Sermon Series CSS */

body .sermon-series-section .sermon-series-container{
    position: relative;
}

body .sermon-series-container .sermon-series-item{
    background: #FAFAFA;
    padding: 40px;
    border-radius: 40px;
    margin-bottom: 20px;
}

body .sermon-series-container .sermon-series-item .series-date p{
    text-transform: uppercase;
    margin-bottom: 10px;
}

body .sermon-series-container .sermon-series-item .series-name h4{
    margin-bottom: 10px;
}

body .sermon-series-container .sermon-series-item .series-desc p{
    margin-bottom: 15px;
}

body .sermon-series-container .sermon-series-item .series-cta-container{
    display: flex;
    gap: 10px;
}

body .sermon-series-container .sermon-series-item .series-cta-container a{
    border: 1px solid #707070;
    background: transparent;
    color: #008078;
}

audio {
    width: 100%;
    height: 35px;
    background: transparent;
}

audio::-webkit-media-controls-panel{
    background: #FAFAFA;
}

audio::-webkit-media-controls-mute-button {
    -webkit-appearance: media-mute-button;
    display: flex;
    flex: none;
    border: none;
    box-sizing: border-box;
    width: 35px;
    height: 30px;
    line-height: 30px;
    margin: 0 6px 0 0;
    padding: 0;
    background-color: initial;
    color: inherit;
}

audio::-webkit-media-controls-play-button {
    -webkit-appearance: media-play-button;
    display: flex;
    flex: none;
    border: none;
    box-sizing: border-box;
    width: 30px;
    height: 32px;
    line-height: 30px;
    margin-left: 0px;
    margin-right: 15px;
    padding: 0;
    background-color: #00ffef;
    border-radius: 40px;
    color: inherit;
}
audio::-webkit-media-controls-timeline-container{
    -webkit-appearance: media-controls-background;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1;
    -webkit-user-select: none;
    height: 26px;
    min-width: 0;
}

audio::-webkit-media-controls-current-time-display, video::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-time-remaining-display {
    -webkit-appearance: media-current-time-display;
    -webkit-user-select: none;
    flex: none;
    display: flex;
    border: none;
    cursor: default;
    height: 30px;
    margin: 0 5px 0 0;
    padding: 0;
    line-height: 30px;
    font-family: edudiatype, sans-serif;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    color: #A3A3A3;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0;
    text-shadow: none;
    min-width: 30px;
    text-decoration: none;
}

/* Podcast Section CSS */

body .custom-firstfold-section.podcast-firstfold-section{
    box-sizing: content-box;
    margin: 20px;
    border-radius: 30px;
}

body .custom-firstfold-section.podcast-firstfold-section:before{
    border-radius: 30px;
}

body .custom-firstfold-section.podcast-firstfold-section:after{
    position: absolute;
    content: '';
    top: -20px;
    left: -20px;
    background-color: #00ffef;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    z-index: -1;
}

body .custom-firstfold-section.podcast-firstfold-section .custom-page-section{
    min-height: calc(100vh - 209px);
    margin-top: 0px;
}

body .hosted-images-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    gap: 25px;
}

body .hosted-images-container .image-item img{
    max-height: 300px;
    border-radius: 30px;
}

body .custom-previous-section .posts-container{
    display: flex;
    justify-content: center;
    gap: 25px;
}

body .custom-previous-section .posts-container .post-item{
    background: #F8F8F8;
    padding: 40px;
    border-radius: 40px;
    width: 100%;
}

body .custom-previous-section .posts-container .post-item h2{
    margin-bottom: 30px;
    margin-top: 20px;
}

body .podcast-episodes-section .sermon-series-container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

body .podcast-episodes-section .sermon-series-container .sermon-series-item{
    width: 100%;
}

body .custom-content-section table,
body .custom-content-section table tr,
body .custom-content-section table td{
    font-size: 18px;
    border: none;
    background: transparent !important;
}

body .custom-content-section table td{
    border: 1px solid #ebebeb;
}

body .custom-content-section table{
    margin-top: 60px;
}

body .custom-content-section .imagegallery-slider{
    margin-top: 40px;
    margin-bottom: 40px;
}

body .custom-toc-section{
    position: sticky;
    top: 58px;
    overflow: hidden;
    z-index: 2;
}

body .custom-toc-section .table-of-contents{
    background: #E3FFFF;
    border-radius: 25px;
    padding: 0px;
    /* box-shadow: 0 1px 12px rgba(0,0,0,0.05) */
    padding-top: 70px;
    position: relative;
    display: flex;
    justify-content: center;
}

body .custom-toc-section .table-of-contents .toc-heading{
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    text-align: center;
}

body .custom-toc-section .table-of-contents .toc-heading h3{
    margin-bottom: 0px;
    padding: 25px !important;
    padding-bottom: 10px !important;
}

body .custom-toc-section .table-of-contents .toc-content{
    display: flex;
    gap: 20px;
    /* justify-content: center; */
    margin-top: 0px;
    width: 100%;
    align-items: center;
    overflow-y: hidden;
    overflow-x: scroll;
    padding: 10px;
    scrollbar-width: thin;
}


body .custom-toc-section .table-of-contents .toc-content a{
    border: 1px solid #707070;
    background: transparent;
    color: #008078;
    min-width: 260px;
}

body .custom-toc-section .table-of-contents .toc-content .main-cta{
    margin: 0 auto;
}

body .custom-impactreports-section .events-container.event-monthly{
    margin-top: 0px;
}

body .custom-impactreports-section .event-item{
    padding: 0px;
}

body .custom-impactreports-section .event-item .item-inner{
    position: relative;
    min-height: 500px;
    overflow: hidden;
    align-items: flex-start !important;
    padding: 40px !important;
    margin: 10px !important;
}

body .custom-impactreports-section .event-item .item-inner:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #4E4E4E 0%, #00000000 100%) 0% 0% no-repeat padding-box;
}

body .custom-impactreports-section .event-item .item-inner .event-text,
body .custom-impactreports-section .event-item .item-inner .event-name{
    position: relative;
    z-index: 2;
}

body .custom-impactreports-section .event-item .item-inner .event-text{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    position: absolute;
    bottom: 30px;
    left: 0;
}

body .custom-impactreports-section .event-item .item-inner .event-cta-container{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    width: 100%;
    flex-wrap: wrap;
}

body .custom-impactreports-section .event-item .item-inner .tooltip-copy a:before{
    color: #FFF;
}

body .custom-impactreports-section:has(.impactsreports[data-all="0"]){
    display: none;
}

/* Banner Section CSS */

body .custom-banner-section .banner-container{
    position: relative;
    padding: 110px 40px;
    border-radius: 45px;
    overflow: hidden;
}

body .custom-banner-section .banner-container:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00BAB39A;
}

body .custom-banner-section .banner-container > div{
    display: block;
    position: relative;
    z-index: 3;
}

/* Ways to Give CSS */

body .custom-waystogive-section .waystogive-container{
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    gap: 20px;
    justify-content: center;
}

body .custom-waystogive-section .waystogive-container .waystogive-item{
    width: calc(50% - 20px);
    background: #FAFAFA;
    padding: 60px;
    border-radius: 50px;
}

body .custom-waystogive-section .waystogive-item .give-heading h2{
    font-weight: 400;
}

body .custom-waystogive-section .waystogive-item .give-description h4{
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Give Items CSS Container */

body .give-items-section .give-container{
    display: flex;
    gap: 20px;
}

body .give-items-section .give-container .give-item{
    padding: 60px;
    border-radius: 50px;
}

body .give-items-section .give-container .give-item .pagination-navigation{
    margin-top: 30px;
    margin-bottom: 0px;
}

body .give-items-section .give-container.four-col .give-item{
    padding: 40px;
}

body .job-content-main h4 p{
    line-height: 150%;
}

body .job-content-main h4 p strong{
    margin-top: 40px;
    margin-bottom: 30px;
    display: block;
}

body .main-box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: calc(100%);
}

body .main-box-container .box-item{
    width: calc(50% - 20px);
    background: #FAFAFA;
    padding: 60px;
    border-radius: 50px;
}

body .custom-content-section.flexible-content .section-inner .smallest-container h4,
body .custom-content-section.flexible-content .section-inner .smallest-container h2{
    margin-bottom: 40px;
}

body .stories-content-section{
    margin-top: -40px;
}

/* Sliders with only one slide CSS */

body .slider[data-all="1"] .slider_navigation{
    display: none !important;
}

body .slider[data-all="1"] .slider__container{
    justify-content: center;
    width: 100% !important;
}

body .slider[data-all="1"] .slider__container.imagegallery-container .slider__item{
    width: 100%;
    max-width: 860px;
}

/* Sliders with all slides showing */

body .slider[data-all="0"]{
    display: none !important;
}

body .slider[data-all="2"]:has(.slider__container[data-step="2"]) .slider_navigation{
    display: none !important;
}

body .slider[data-all="3"]:has(.slider__container[data-step="3"]) .slider_navigation{
    display: none !important;
}

/* Mission Vision CSS  */

body .custom-mission-section .card-heading h2 p{
    font-weight: 400;
}

body .custom-mission-section .card-heading h2 p strong{
    color: #00BAB3;
}

body .custom-mission-section .card-image.gif-image img{
    height: 340px;
    margin-bottom: 20px;
}

body .prayer-container{
    background: #E3FFFF;
    padding: 80px;
    border-radius: 50px;
    border: 4px solid #00BAB3;
}

@media screen and (max-width: 1024px) {
    .slider__item,
    .slider__container[data-step="4"] .slider__item {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 768px) {
    .slider__item,
    .slider__container[data-step="4"] .slider__item,
    .slider__container[data-step="3"] .slider__item {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 480px) {
    .slider__item,
    .slider__container[data-step="4"] .slider__item,
    .slider__container[data-step="3"] .slider__item,
    .slider__container[data-step="2"] .slider__item {
        width: calc(100% / 1);
    }
}

/* Smaller Screen Desktops */
@media only screen and (max-width: 1280px) {
}

/* Mid Large Screen Desktops */
@media only screen and (min-width: 1440px) {
}

/* Large Screen Desktops */
@media only screen and (min-width: 1920px) {

    body .vision-gallery .gallery img{
        max-height: 33vh;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

    /* Default CSS */

    .slider__container .slider__item img{
        height: 340px;
        border-radius: 25px;
    }

    .slider__item .slider-inner{
        padding: 20px;
        border-radius: 25px;
    }

    body .slider__container.imagegallery-container .slider__item .slider-inner img{
        height: 340px;
    }

    /* Home CSS */

    body .custom-welcome-cards-section .welcome-ministry .welcome-container{
        min-height: 520px;
    }

    body .custom-welcome-cards-section .welcome-ministry .welcome-container .gwa-bg-video > iframe,
    body .custom-welcome-cards-section .welcome-ministry .welcome-container .gwa-bg-video > video{
        height: calc(100% + 80px);
        width: calc(100% + 80px);
        top: -40px;
        left: -40px;
    }

    .home-communitygroup-slider .slider__container .slider__item img{
        height: 280px;
    }

    .home-communitygroup-slider .slider__item .slider-inner{
        padding: 20px;
    }

    body .prayer-container{
        padding: 60px;
    }

    /* Sermons Home CSS */

    body .sermon-series-section .sermon-series-container{
        width: 100%;
    }

    body .sermon-series-container .sermon-series-item{
        padding: 20px;
        border-radius: 25px;
    }

    body .sermon-series-item .series-header .series-image{
        border-radius: 25px;
    }

    /* Event Container CSS */

    body .events-container.event-featured .event-item .item-inner{
        padding: 20px;
        border-radius: 25px;
        flex-wrap: wrap;
    }

    body .events-container.event-monthly .event-item .item-inner{
        padding: 20px;
        border-radius: 25px;
    }

    body .events-container.event-featured .event-item .event-image img{
        border-radius: 25px;
        height: 340px;
    }

    /* Resources CSS */

    body .resource-main-container .resource-item,
    body .stories-main-container .stories-item{
        width: calc(50% - 30px);
        padding: 20px;
        border-radius: 25px;
    }

    body .resource-main-container .resource-item.featured .resource-image img{
        height: 340px;
    }

     /* Get Involved CSS */

    body .custom-vision-getinvolved-section .get-involved-column{
        width: 100%;
        min-height: 520px;
        padding: 20px;
        border-radius: 25px;
    }

    body .custom-vision-getinvolved-section .get-involved-column .column-inner{
        margin-top: 20px;
    }

    /* Vission Container CSS */

    body .custom-vision-achieve-section .vision-achieve-container{
        padding: 20px;
        border-radius: 25px;
        padding-top: 30px;
    }

    /* Gallery CSS */

    body .custom-firstfold-section.banner-gallery-section .vision-gallery-container:before{
        left: 0;
        width: 100%;
    }

    body .vision-gallery{
        width: calc(100%);
        left: 0px;
        overflow: hidden;
    }

    body .vision-gallery-container{
        margin-top: -20px;
        width: calc(100vw);
        left: 0px;
        overflow: hidden;
    }

    body .vision-gallery .gallery .gallery-item{
        height: 25vw;
        width: 25vw;
        max-width: 25vw;
    }

    body .vision-gallery.gallery-1 .gallery {
        animation: watermove 35s linear alternate infinite;
    }
    
    body .vision-gallery.gallery-2 .gallery {
        animation: watermove2 35s linear alternate infinite;
    }

    @keyframes watermove {
        0% {
            left: 0%;
        }
        100% {
            left: -100%;
        }
    }
    
    @keyframes watermove2 {
        0% {
            left: -100%;
        }
        100% {
            left: 0%;
        }
    }

    /* Mission Vision CSS */

    body .multiple-columns-container{
        flex-wrap: wrap;
        border-radius: 25px;
    }

    body .multiple-columns-container .multiple-column{
        width: calc(50% - 15px);
        padding: 20px;
        border-radius: 25px;
    }

    body .multiple-columns-container .column-image img{
        height: 340px;
    }

    /* Our Team CSS */

    body .staff-main-container{
        gap: 20px;
    }

    body .staff-main-container .staff-item{
        width: calc(33.33% - 15px);
        margin: 0px;
        border-radius: 25px;
        padding: 20px;
    }

    body .staff-main-container .staff-item .staff-image img{
        height: 280px;
    }

    body .college-team-slider .slider__container,
    body .more-staff-slider .slider__container{
        gap: 20px;
    }

    body .college-team-slider .slider__item .slider-inner,
    body .more-staff-slider .slider__item .slider-inner{
        padding: 20px;
        margin: 0px;
    }

    /* Highlight Cards CSS */

    body .custom-highlights-section .events-highlights-section .three-col .highlights-container .highlight-item{
        width: calc(50% - 15px);
    }

    /* Stories Container Results CSS */

    body .stories-main-container .stories-item.featured .stories-image img{
        height: 340px;
    }

    body .stories-main-container .stories-item .stories-image img{
        height: 280px;
    }

    /* Search CSS */

    body .search-filters-section.stories-filter .search-options,
    body .search-filters-section.resource-filter .search-options{
        max-width: 300px;
    }

    body .search-results-main-section .search-results-section .search-items-container{
        width: calc(100%);
        left: 0px;
        gap: 20px;
    }

    body .search-results-section .search-items-container .search-item .resource-image img,
    body .search-results-section .search-items-container .search-item .stories-image img{
        height: 340px;
    }

    body .search-filters-section .filters-container{
        margin-left: 0px;
        flex-wrap: wrap;
        width: 100%;
        gap: 5px;
        margin-top: 15px;
    }

    body .search-filters-section.sermons-filter .section-inner{
        flex-wrap: wrap;
    }

    body .search-filters-section .search-options{
        max-width: calc(33.33% - 22px);
    }

    body .search-filters-section.cg-filter .search-options{
        max-width: fit-content;
    }

    body .search-filters-main-section{
        padding: 0 20px;
        border-radius: 25px;
    }

    body .search-filters-section.sermons-filter{
        border-radius: 25px;
        padding: 20px;
    }

    body .search-main-section .search-form-container{
        width: fit-content;
    }

    body .search-filters-section.sermons-filter .search-form-container{
        margin-right: 10px;
    }

    body .sermon-main-container .sermon-item.featured{
        padding: 20px;
        border-radius: 25px;
    }

    body .sermon-main-container .sermon-item .sermon-image{
        min-height: 340px;
    }

    body .search-results-main-section .search-results-section .search-items-container .sermon-item{
        padding: 20px;
        border-radius: 25px;
        margin: 0px;
        width: calc(50% - 10px);
    }

    body .search-results-main-section .sermon-item .sermon-image{
        min-height: 280px;
    }

    /* Video Container CSS */

    body .job-popup-container .job-popup.video-popup .popup-video iframe{
        width: 780px;
        height: 440px;
    }

    body .custom-welcome-cards-section .welcome-ministry{
        padding: 20px;
        border-radius: 25px;
    }

    body .custom-welcome-cards-section .welcome-ministry .welcome-container{
        padding: 20px;
        border-radius: 25px;
    }

    /* Community Groups */

    body .search-filters-section.cg-filter .section-inner{
        border-radius: 25px;
        padding: 20px;
    }

    body .search-filters-section.cg-filter .tooltip-element{
        margin-left: 5px;
    }

    body.single-communitygroups .cg-featured-image{
        height: 370px;
    }

    body .custom-welcome-cards-section .welcome-cards{
        gap: 20px;
    }

    body .custom-welcome-cards-section .welcome-cards .job-popup-container{
        padding: 20px;
        border-radius: 25px;
        width: 50%;
    }

    body .custom-welcome-cards-section .welcome-cards .job-popup-container .job-popup-image img{
        height: 280px;
    }

    body .custom-stories-section .slider__container .slide-image img{
        height: 280px;
    }

    body .events-container.event-monthly .event-item{
        width: calc(50%);
    }

    body .events-container.event-monthly .event-item .event-image img{
        border-radius: 25px;
        height: 280px;
    }

    body .acf-map .gm-style-iw-chr button span{
        margin-left: 25px !important;
    }

    body .custom-events-section .slider[data-all="3"] .slider_navigation,
    body .custom-team-section .slider[data-all="3"] .slider_navigation{
        display: flex;
    }

    body .main-box-container .box-item{
        width: 100%;
        border-radius: 25px;
        padding: 20px;
    }

    /* Testimonies Videos */

    body .student-testimonies-slider .watch-video-main{
        min-height: 510px;
    }

    body .student-testimonies-slider .watch-video-main .gwa-bg-video > iframe,
    body .student-testimonies-slider .watch-video-main .gwa-bg-video > video{
        height: calc(100% + 120px);
        width: calc(100% + 0px);
    }

    /* Well Said Podcast CSS */

    body .custom-previous-section .posts-container{
        gap: 20px;
    }

    body .custom-previous-section .posts-container .post-item{
        padding: 20px;
        border-radius: 25px;
    }

    /* Sliders with all slides showing */
    
    body .slider[data-all="3"]:has(.slider__container[data-step="3"]) .slider_navigation{
        display: flex !important;
    }

    /* Impact Reports CSS */

    body .custom-impactreports-section .event-item .item-inner{
        min-height: 480px !important;
        margin: 10px !important;
        padding: 20px !important;
    }

    body .custom-impactreports-section .events-container{
        gap: 0px;
        padding-bottom: 20px;
    }

    body .custom-impactreports-section .event-item{
        margin: 0px;
    }

    body .resource-main-container .resource-item.featured .resource-image img{
        height: 280px;
    }

    
    /* Achieve Section CSS */
    
    body .custom-vision-achieve-section .vision-achieve-container .achieve-image img{
        height: 480px;
        width: 100%;
    }
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    
    /* Default CSS */

    .slider__container .slider__item img{
        height: 280px;
        border-radius: 25px;
    }

    body .slider__container.imagegallery-container .slider__item .slider-inner img{
        height: 280px;
    }

    /* Home CSS */

    body .custom-welcome-cards-section .welcome-ministry .welcome-container{
        min-height: 387px;
    }

    body .custom-welcome-cards-section .welcome-ministry .welcome-container .gwa-bg-video > iframe,
    body .custom-welcome-cards-section .welcome-ministry .welcome-container .gwa-bg-video > video{
        height: calc(100% + 80px);
        width: calc(100% + 80px);
        top: -40px;
        left: -40px;
    }

    /* Sermons Home CSS */

    body .sermon-series-container .sermon-series-item .series-cta-container{
        flex-wrap: wrap;
    }

    /* Resources CSS */

    body .resource-main-container,
    body .stories-main-container{
        gap: 20px;
    }

    body .resource-main-container .resource-item.featured,
    body .stories-main-container .stories-item.featured,
    body .resource-main-container .resource-item,
    body .stories-main-container .stories-item{
        width: calc(100%);
        padding: 20px;
        border-radius: 25px;
        margin: 0px;
    }

    body .resource-main-container .resource-item{
        width: calc(50% - 10px);
        padding: 20px;
        border-radius: 25px;
        margin: 0px;
    }

    body .resource-main-container .resource-item.featured .resource-image img{
        height: 280px;
    }

    /* Get Involved CSS */

    body .custom-vision-getinvolved-section .get-involved-column{
        width: 100%;
        min-height: 460px;
        padding: 20px;
        border-radius: 25px;
    }

    /* Gallery CSS */

    body .vision-gallery{
        width: calc(100%);
        left: 0px;
        overflow: hidden;
    }

    body .vision-gallery-container{
        margin-top: -20px;
        width: calc(100vw);
        left: 0px;
        overflow: hidden;
    }

    body .vision-gallery .gallery .gallery-item{
        height: 35vw;
        width: 35vw;
        max-width: 35vw;
    }

    body .vision-gallery.gallery-1 .gallery {
        animation: watermove 25s linear alternate infinite;
    }
    
    body .vision-gallery.gallery-2 .gallery {
        animation: watermove2 25s linear alternate infinite;
    }

    @keyframes watermove {
        0% {
            left: 0%;
        }
        100% {
            left: -100%;
        }
    }
    
    @keyframes watermove2 {
        0% {
            left: -100%;
        }
        100% {
            left: 0%;
        }
    }

    /* Mission Vision CSS */

    body .multiple-columns-container .column-image img{
        height: 280px;
    }

    /* Our Team CSS */

    body .staff-main-container .staff-item{
        width: calc(50% - 10px);
    }

    body .staff-main-container .staff-item .staff-image img{
        height: 300px;
    }

    body .college-team-slider .slider__container,
    body .more-staff-slider .slider__container{
        gap: 20px;
    }

    body .college-team-slider .slider__item .slider-inner,
    body .more-staff-slider .slider__item .slider-inner{
        padding: 20px;
        margin: 0px;
    }

    body .staff-featured-section .staff-email .email-inner{
        padding: 20px;
    }

    /* Highlight Cards CSS */

    body .custom-highlights-section .events-highlights-section .three-col .highlights-container .highlight-item{
        width: calc(50% - 15px);
    }

    /* Stories Container Results CSS */

    body .stories-main-container .stories-item.featured .stories-image img{
        height: 340px;
    }

    body .stories-main-container .stories-item .stories-image img{
        height: 340px;
    }

    body .resource-main-container .resource-item .event-name,
    body .stories-main-container .stories-item .event-name{
        min-height: auto;
    }

    /* Search CSS */

    body .search-filters-section .filters-container{
        margin-left: 0px;
        margin-top: 30px;
    }

    body .search-results-main-section .search-results-section .search-items-container{
        width: 100%;
        left: 0px;
    }

    body .search-results-section .search-items-container .search-item .resource-image img,
    body .search-results-section .search-items-container .search-item .stories-image img{
        height: 280px;
    }

    body .sermon-main-container .sermon-item .sermon-image{
        min-height: 280px;
    }

    body .search-results-main-section .sermon-item .sermon-image{
        min-height: 240px;
    }

    /* Popup Videos */


    body .job-popup-container .job-popup.video-popup .popup-inner{
        max-width: calc(100% - 20px);
        border-radius: 25px;
    }

    body .job-popup-container .job-popup.video-popup .popup-video iframe{
        width: 680px;
        height: 380px;
    }

    /* Community Groups */

    body.single-communitygroups .cg-featured-image{
        height: 380px;
    }

    body .custom-welcome-cards-section .welcome-cards .job-popup-container .job-popup-image img{
        height: 240px;
    }

    body .custom-stories-section .slider__container .slide-image img{
        height: 240px;
    }

    body .events-container.event-monthly .event-item{
        width: calc(50%);
    }

    body .events-container.event-monthly .event-item .event-image img{
        height: 240px;
    }

     /* Single Events CSS */

    body .events-featured-section .go-back a{
        margin-top: -60px;
        margin-bottom: 30px;
    }

    body .events-featured-section .event-image img{
        height: 280px;
    }

    body .events-highlights-section .highlights-container .highlight-item{
        border-radius: 25px;
        padding: 30px;
    }

    body .custom-location-section .location-container{
        flex-wrap: wrap;
        padding: 20px;
        border-radius: 25px;
    }
    
    body .custom-location-section .location-container .location-col .acf-map{
        height: 320px;
    }

    body .custom-location-section .location-container .location-col,
    body .custom-location-section .location-container .heading-col{
        width: 100%;
    }

    body .events-register-section .register-container{
        padding: 40px 20px;
    }

    /* Testimonies Videos */

    body .student-testimonies-slider .watch-video-main{
        min-height: 375px;
    }

    body .student-testimonies-slider .watch-video-main .gwa-bg-video > iframe,
    body .student-testimonies-slider .watch-video-main .gwa-bg-video > video{
        height: calc(100% + 120px);
        width: calc(100% + 0px);
    }

    /* Impact Reports CSS */

    body .custom-impactreports-section .event-item .item-inner{
        min-height: 400px !important;
    }

    body .resource-main-container .resource-item .resource-image img{
        height: 240px;
    }

    /* Achieve Section CSS */
    
    body .custom-vision-achieve-section .vision-achieve-container .achieve-image img{
        height: 380px;
        width: 100%;
    }
}

/* Mobile Devices */
@media only screen and (max-width: 765px) {

    /* Default CSS */

    .slider__container .slider__item img{
        height: 240px;
        border-radius: 25px;
    }

    .slider__item .slider-inner{
        padding: 20px;
        border-radius: 25px;
    }

    body .slider__container.imagegallery-container .slider__item .slider-inner img{
        height: 240px;
    }

    /* Home CSS */

    body .custom-welcome-cards-section .welcome-ministry .welcome-container{
        min-height: 340px;
    }

    body .custom-welcome-cards-section .welcome-ministry .welcome-container .gwa-bg-video > iframe,
    body .custom-welcome-cards-section .welcome-ministry .welcome-container .gwa-bg-video > video{
        height: calc(100% + 360px);
        width: calc(100% + 360px);
        left: -180px;
        top: -180px;
    }

    .home-communitygroup-slider .slider__container .slider__item img{
        height: 240px;
    }

    .home-communitygroup-slider .slider__item .slider-inner{
        padding: 20px;
    }

    body .prayer-container{
        padding: 40px;
    }

    /* Sermons Home CSS */

    body .sermon-series-section .sermon-series-container{
        width: 100%;
    }

    body .sermon-series-container .sermon-series-item{
        padding: 20px;
        border-radius: 25px;
    }

    body .sermon-series-item .series-header .series-image{
        border-radius: 25px;
    }

    body .sermon-series-item .series-header{
        flex-wrap: wrap;
    }

    body .sermon-series-item .series-header .series-content{
        width: calc(100%);
        padding-left: 0px;
        padding-top: 20px;
    }

    body .sermon-series-container .sermon-series-item .series-cta-container{
        flex-wrap: wrap;
    }

    /* Event Container CSS */

    body .events-container.event-featured .event-item .item-inner{
        padding: 20px;
        border-radius: 25px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    body .events-container.event-monthly .event-item .item-inner{
        padding: 20px;
        border-radius: 25px;
    }

    body .events-container.event-featured .event-item .event-text{
        padding-right: 0px;
        width: 100%;
        padding-top: 30px;
        text-align: center;
    }

    body .events-container .event-item .event-cta-container{
        justify-content: center;
        margin-top: 0px !important;
    }

    body .events-container.event-featured .event-item .event-image{
        width: 100%;
    }

    body .events-container.event-featured .event-item .event-image img{
        border-radius: 25px;
        height: 240px;
    }

    /* Resources CSS */

    body .resource-main-container,
    body .stories-main-container{
        gap: 20px;
    }

    body .resource-main-container .resource-item.featured,
    body .stories-main-container .stories-item.featured,
    body .resource-main-container .resource-item,
    body .stories-main-container .stories-item{
        width: calc(100%);
        padding: 20px;
        border-radius: 25px;
        margin: 0px;
    }

    body .resource-main-container .resource-item.featured .resource-image img{
        height: 240px;
    }

    /* Get Involved CSS */

    body .custom-vision-getinvolved-section .getinvolved-heading h2 span:before{
        display: none;
    }

    body .custom-vision-getinvolved-section .getinvolved-heading h2{
        margin-bottom: 30px;
    }

    body .custom-vision-getinvolved-section .getinvolved-heading h2 br{
        height: 0px;
    }

    body .custom-vision-getinvolved-section .getinvolved-heading h2 br{
        display: none;
    }

    body .custom-vision-getinvolved-section .get-involved-columns{
        flex-wrap: wrap;
        gap: 20px;
    }

    body .custom-vision-getinvolved-section .get-involved-column{
        width: 100%;
        min-height: 420px;
        padding: 20px;
        border-radius: 25px;
    }

    body .custom-vision-getinvolved-section .get-involved-column .column-inner{
        margin-top: 20px;
    }

    /* Vission Container CSS */

    body .custom-vision-achieve-section .vision-achieve-container{
        padding: 20px;
        border-radius: 25px;
        padding-top: 30px;
    }

    body .custom-vision-achieve-section .vision-achieve-container .achieve-image img{
        margin-top: 30px;
    }

    body .custom-vision-achieve-section .vision-achieve-container .achieve-content h4 br{
        display: none;
    }

    /* Gallery CSS */

    body .custom-firstfold-section.banner-gallery-section .vision-gallery-container:before{
        left: 0;
        width: 100%;
    }

    body .vision-gallery{
        width: calc(100%);
        left: 0px;
        overflow: hidden;
    }

    body .vision-gallery-container{
        margin-top: -20px;
        width: calc(100vw);
        left: 0px;
        overflow: hidden;
    }

    body .vision-gallery .gallery .gallery-item{
        height: 50vw;
        width: 50vw;
        max-width: 50vw;
    }

    body .vision-gallery.gallery-1 .gallery {
        animation: watermove 18s linear alternate infinite;
    }
    
    body .vision-gallery.gallery-2 .gallery {
        animation: watermove2 18s linear alternate infinite;
    }

    @keyframes watermove {
        0% {
            left: 0%;
        }
        100% {
            left: -100%;
        }
    }
    
    @keyframes watermove2 {
        0% {
            left: -100%;
        }
        100% {
            left: 0%;
        }
    }

    /* Mission Vision CSS */

    body .multiple-columns-container{
        flex-wrap: wrap;
        border-radius: 25px;
    }

    body .multiple-columns-container .multiple-column{
        width: 100%;
        padding: 20px;
        border-radius: 25px;
    }

    body .multiple-columns-container .column-image img{
        height: 240px;
    }

    body.page-template-missionvision-main .custom-mission-section{
        margin-top: -120px;
    }

    body .job-popup-container .job-popup.missioncardpopup .popup-inner{
        max-width: calc(100% - 20px);
        border-radius: 25px;
    }

    body .job-popup-container .job-popup.missioncardpopup .popup-content{
        padding: 20px;
        padding-top: 66px;
        border-radius: 25px;
    }

    body .job-popup-container .job-popup.missioncardpopup .popup-inner .popup-close{
        top: 20px;
        right: 20px;
        transform: scale(1);
    }

    body .job-popup-container .job-popup.missioncardpopup .megamega-main-heading h2 p{
        word-break: break-word;
        font-size: 80% !important;
    }

    /* Popup Videos */

    body .job-popup-container .job-popup .popup-inner{
        padding: 20px;
        padding-top: 50px;
    }

    body .job-popup-container .job-popup .popup-close{
        top: 10px;
        right: 10px;
    }

    body .job-popup-container .job-popup.video-popup .popup-close{
        top: -20px;
        right: -20px;
    }

    body .job-popup-container .job-popup.video-popup .popup-inner,
    body .job-popup-container .job-popup .popup-inner{
        max-width: calc(100% - 20px);
        border-radius: 25px;
    }

    body .job-popup-container .job-popup.video-popup .popup-video iframe{
        width: 100%;
        height: 350px;
    }

    /* Our Team CSS */

    body .staff-main-container .staff-item{
        width: calc(100%);
    }

    body .staff-main-container .staff-item .staff-image img{
        height: 280px;
    }

    body .staff-featured-section .staff-image{
        height: auto;
    }

    body .staff-featured-section .staff-email .email-inner{
        padding: 20px;
    }

    body .staff-featured-section .staff-email .email-text p{
        padding-right: 15px;
        padding-bottom: 0px;
    }

    body .college-team-slider .slider__container,
    body .more-staff-slider .slider__container{
        gap: 0px;
    }

    body .college-team-slider .slider__item .slider-inner,
    body .more-staff-slider .slider__item .slider-inner{
        padding: 20px;
        margin: 0px;
    }

    body .staff-main-container {
        gap: 20px;
    }
    
    body .staff-main-container .staff-item {
        width: calc(100%);
        margin: 0px;
        border-radius: 25px;
        padding: 20px;
    }

    /* Highlight Cards CSS */

    body .custom-highlights-section .events-highlights-section .three-col .highlights-container .highlight-item{
        width: calc(100%);
    }

    /* Stories Container Results CSS */

    body .stories-main-container .stories-item.featured .stories-image img{
        height: 240px;
    }

    body .stories-main-container .stories-item .stories-image img{
        height: 240px;
    }

    body .resource-main-container .resource-item .event-name,
    body .stories-main-container .stories-item .event-name{
        min-height: auto;
    }

    /* Search CSS */

    body .search-filters-section .filters-container{
        flex-wrap: wrap;
        gap: 20px;
        margin-left: 0px;
        margin-top: 30px;
    }

    body .search-results-main-section .search-results-section .search-items-container{
        width: 100%;
        left: 0px;
    }

    body .search-results-section .search-items-container .search-item{
        flex-wrap: wrap;
    }

    body .search-results-section .search-items-container .search-item .resource-text,
    body .search-results-section .search-items-container .search-item .stories-text{
        width: 100%;
        padding-right: 0px;
        padding-bottom: 30px;
    }

    body .search-results-section .search-items-container .search-item .resource-image,
    body .search-results-section .search-items-container .search-item .stories-image{
        width: 100%;
    }

    body .search-results-section .search-items-container .search-item .resource-image img,
    body .search-results-section .search-items-container .search-item .stories-image img{
        height: 240px;
    }

    body .search-filters-section .filters-container{
        margin-left: 0px;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
        margin-top: 15px;
    }

    body .search-filters-section.sermons-filter .section-inner{
        flex-wrap: wrap;
        padding: 0px;
    }

    body .search-filters-section .search-options{
        max-width: calc(100%);
    }

    body .search-filters-main-section{
        padding: 0 20px;
        border-radius: 25px;
    }

    body .search-filters-section.sermons-filter{
        border-radius: 25px;
        padding: 20px;
    }

    body .search-main-section .search-form-container{
        width: fit-content;
    }

    body .search-filters-section.sermons-filter .search-form-container{
        margin-right: 0px;
        width: 100%;
        justify-content: flex-start
    }

    body .search-filters-section.sermons-filter .search-form-container input{
        width: 100%;
    }

    body .sermon-main-container .sermon-item.featured{
        padding: 20px;
        border-radius: 25px;
    }

    body .sermon-main-container .sermon-item .sermon-image{
        min-height: 280px;
    }

    body .search-results-main-section .search-results-section .search-items-container .sermon-item{
        padding: 20px;
        border-radius: 25px;
        margin: 0px;
        width: calc(100%);
    }

    body .search-results-main-section .sermon-item .sermon-image{
        min-height: 240px;
    }

    body .search-filters-section.cg-filter{
        padding: 0px;
    }

    /* Video Container CSS */

    body .custom-welcome-cards-section .welcome-ministry{
        padding: 20px;
        border-radius: 25px;
    }

    body .custom-welcome-cards-section .welcome-ministry .welcome-container{
        padding: 20px;
        border-radius: 25px;
    }

    /* Community Groups */

    body .search-filters-section.cg-filter .section-inner{
        border-radius: 25px;
        padding: 20px;
    }

    body .search-filters-section.cg-filter .tooltip-element{
        margin-left: -5px;
    }

    body.single-communitygroups .cg-featured-image{
        height: 240px;
    }

    body .custom-welcome-cards-section .welcome-cards{
        gap: 20px;
        flex-wrap: wrap;
    }

    body .custom-welcome-cards-section .welcome-cards .job-popup-container{
        padding: 20px;
        border-radius: 25px;
        width: 100%;
    }

    body .custom-welcome-cards-section .welcome-cards .job-popup-container .job-popup-image img{
        height: 240px;
    }

    body .search-filters-section .search-options .radio-options{
        flex-wrap: wrap;
        gap: 10px;
    }

    body .custom-stories-section .slider__container .slide-image img{
        height: 240px;
    }

    body .events-container.event-monthly .event-item{
        width: calc(100%);
    }

    body .events-container.event-monthly .event-item .event-image img{
        border-radius: 25px;
        height: 240px;
    }

    body .acf-map .gm-style-iw{
        max-width: fit-content !important;
    }

    body .acf-map .gm-style-iw-chr button span{
        margin-left: 25px !important;
    }

    body .custom-events-section .slider[data-all="1"] .slider__container,
    body .custom-events-section .slider[data-all="2"] .slider__container,
    body .custom-events-section .slider[data-all="3"] .slider__container,
    body .custom-team-section .slider[data-all="1"] .slider__container,
    body .custom-team-section .slider[data-all="2"] .slider__container,
    body .custom-team-section .slider[data-all="3"] .slider__container{
        justify-content: flex-start;
    }

    body .custom-events-section .slider[data-all="2"] .slider_navigation,
    body .custom-events-section .slider[data-all="3"] .slider_navigation,
    body .custom-team-section .slider[data-all="2"] .slider_navigation,
    body .custom-team-section .slider[data-all="3"] .slider_navigation{
        display: flex;
    }

    /* Single Events CSS */

    body .events-featured-section .go-back a{
        margin-top: -60px;
        margin-bottom: 30px;
    }

    body .events-featured-section .event-image img{
        height: 240px;
    }

    body .events-highlights-section .highlights-container{
        flex-wrap: wrap;
    }

    body .events-highlights-section .highlights-container .highlight-item{
        width: 100%;
        border-radius: 25px;
        padding: 30px;
    }

    body .events-highlights-section .long-cards .highlights-container .highlight-item{
        min-height: 440px;
    }

    body .custom-location-section .location-container{
        flex-wrap: wrap;
        padding: 20px;
        border-radius: 25px;
    }
    
    body .custom-location-section .location-container .location-col .acf-map{
        height: 320px;
    }

    body .custom-location-section .location-container .location-col,
    body .custom-location-section .location-container .heading-col{
        width: 100%;
    }

    body .events-register-section .register-container{
        padding: 40px 20px;
    }

    body .main-box-container{
        flex-wrap: wrap;
    }

    body .main-box-container .box-item{
        width: 100%;
        border-radius: 25px;
        padding: 20px;
    }

    /* Testimonies Videos */

    body .student-testimonies-slider .watch-video-main{
        min-height: 170px;
    }

    body .student-testimonies-slider .watch-video-main .gwa-bg-video > iframe,
    body .student-testimonies-slider .watch-video-main .gwa-bg-video > video{
        height: calc(100% + 120px);
        width: calc(100% + 0px);
    }

    body .student-testimonies-slider .watch-video-cta.play-icon a{
        width: 50px;
        height: 50px;
    }

    body .student-testimonies-slider .watch-video-cta.play-icon svg{
        width: 18px;
        height: 18px;
    }

    /* Well Said Podcast CSS */

    body .custom-previous-section .posts-container{
        flex-wrap: wrap;
        gap: 20px;
    }

    body .custom-previous-section .posts-container .post-item{
        padding: 20px;
        border-radius: 25px;
    }

    /* Sliders with all slides showing */
    
    body .slider[data-all="2"]:has(.slider__container[data-step="2"]) .slider_navigation{
        display: flex !important;
    }
    
    body .slider[data-all="3"]:has(.slider__container[data-step="3"]) .slider_navigation{
        display: flex !important;
    }

    /* Impact Reports CSS */

    body .custom-impactreports-section .event-item .item-inner{
        min-height: 400px !important;
        margin: 10px !important;
        padding: 20px !important;
    }

    body .custom-impactreports-section .events-container{
        gap: 0px;
        padding-bottom: 20px;
    }

    body .custom-impactreports-section .event-item{
        margin: 0px;
    }

    body .resource-main-container .resource-item .resource-image img{
        height: 240px;
    }

    /* Achieve Section CSS */
    
    body .custom-vision-achieve-section .vision-achieve-container .achieve-image img{
        height: 240px;
        width: 100%;
    }

    /* Custom Statement Section CSS */

    body .custom-statement-section h2 br{
        display: none;
    }
}