/*--------------------------------------------------------------
# FONTS
--------------------------------------------------------------*/
/*
@font-face {
    font-family: 'Helvetica Neue', sans-serif;
    src: url('assets/fonts/HelveticaNeue-Roman.eot');
    src: url('assets/fonts/HelveticaNeue-Roman.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/HelveticaNeue-Roman.woff2') format('woff2'),
        url('assets/fonts/HelveticaNeue-Roman.woff') format('woff'),
        url('assets/fonts/HelveticaNeue-Roman.ttf') format('truetype'),
        url('assets/fonts/HelveticaNeue-Roman.svg#HelveticaNeue-Roman') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue', sans-serif;
    src: url('assets/fonts/HelveticaNeue-UltraLight.eot');
    src: url('assets/fonts/HelveticaNeue-UltraLight.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/HelveticaNeue-UltraLight.woff2') format('woff2'),
        url('assets/fonts/HelveticaNeue-UltraLight.woff') format('woff'),
        url('assets/fonts/HelveticaNeue-UltraLight.ttf') format('truetype'),
        url('assets/fonts/HelveticaNeue-UltraLight.svg#HelveticaNeue-UltraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
*/

/* Mandy Williams Font */
@font-face {
    font-family: 'Mandy William';
    src: url('assets/fonts/Mandy-William.eot');
    src: url('assets/fonts/Mandy-William.eot?#iefix') format('embedded-opentype'),
         url('assets/fonts/Mandy-William.woff2') format('woff2'),
         url('assets/fonts/Mandy-William.woff') format('woff'),
         url('assets/fonts/Mandy-William.ttf')  format('truetype'),
         url('assets/fonts/Mandy-William.svg#Mandy William') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*--------------------------------------------------------------
# GENERAL
--------------------------------------------------------------*/
body {
  position: relative;
  max-width: 100%;
  background-color: #F1F0EC;
  color: #7A7E48;
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  overflow-x: hidden !important;
}


::selection {
  color: #fff;
  background: #7A7E48;
}


h1, h2, h3, h4, h5, h6 {
    font-family: "Nunito", sans-serif;
    font-weight: 200;
    color: #7A7E48;
}
h1{
    font-size: 64px;
    line-height: 78px !important;
}
h2{
    font-size: 60px;
    line-height: 74px !important;
}
h3{
    font-size: 36px;
    line-height: 44px !important;
}
h4{
    font-size: 32px;
    line-height: 38px !important;
}
h5{
    font-size: 16px;
    line-height: 20px !important;
}
h6{
    font-size: 14px;
    line-height: 20px !important;
}

.medium-text{
    font-size: 24px;
    line-height: 28px;   
}
.medium-text-alt{
    font-size: 18px;
    line-height: 32px;   
}

.no-margin,
.no-margin p{
    margin-bottom:0 !important;
}
.no-margin h5{
    margin-top:0 !important;
    margin-bottom:0 !important;
}


/* remove transition for objects with the class parallax */
.parallax{
    background-attachment: fixed !important;
    transition: none !important;
}

/*
.animated_heading_top .elementor-headline{
    line-height: 58px !important; 
}
*/

.animated_headlines .elementor-headline-animation-type-wave{
    color: #7A7E48;
    font-size: 64px !important;
    line-height: 78px !important;
}
.animated_headlines .elementor-headline-dynamic-text {
	color: #7A7E48;
}
.animated_headlines.white .elementor-headline-dynamic-text {
	color: #fff;
}

.elementor-widget-text-editor ul li{
    padding: 3px 0;
}

.elementor-widget-text-editor a{
    color:#CEAB5E;
    text-decoration: underline;
}
.elementor-widget-text-editor a:hover{
    text-decoration: none;
}

.dialog-lightbox-widget{
    z-index: 99999;
}
.dialog-lightbox-widget .elementor-slideshow__footer{
    display: none;
}

.mandy .elementor-headline,
.animated_heading_top .elementor-headline{
    font-family: 'Mandy William' !important;
    font-size: 90px;
    line-height: 90px !important;
    font-weight: normal;
    font-style: normal;
    margin: 0;
}
.mandy h2 {
    font-family: 'Mandy William' !important;
    font-size: 78px;
    line-height: 78px !important;
    font-weight: normal;
    font-style: normal;
    margin: 0;
}

/*--------------------------------------------------------------
# ANIMATIONS
--------------------------------------------------------------*/
/* Up Down */
@-webkit-keyframes updown {
    50% {
        -webkit-transform: translate(0, 10px);
        transform: translate(0, 10px);
    }
}
@keyframes updown {
    50% {
        -webkit-transform: translate(0, 10px);
        transform: translate(0, 10px);
    }
}


/* Hand */
@keyframes sideHerbSway{
	.0% {
		transform: rotate(0);
	}

	25% {
		transform: rotate(1.5deg);
	}
	50% {
		transform: rotate(0.5deg);
	}
	75% {
		transform: rotate(1.5deg);
	}
	100% {
		transform: rotate(0);
	}
}

/* Swing */
@-webkit-keyframes swinging{
    0%{-webkit-transform: rotate(10deg);}
    50%{-webkit-transform: rotate(-5deg)}
    100%{-webkit-transform: rotate(10deg);}
}
 
@keyframes swinging{
    0%{transform: rotate(10deg);}
    50%{transform: rotate(-5deg)}
    100%{transform: rotate(10deg);}
}


/*--------------------------------------------------------------
# CONTAINER
--------------------------------------------------------------*/
.top-banner {
    position: relative;
	margin-left: 2%;
	max-width: 97% !important;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.top-banner:before {
    border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.page-template-default .top-banner:after,
.post-template-default .top-banner:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 94px;
    top: 0;
    left: 0;
    background: rgba(255,255,255,.8);
}

.home.page-template-default .top-banner:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 94px;
    top: 0;
    left: 0;
    background: transparent;
}



/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
.sites_header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background:  transparent;
}

.sites_header .elementor-widget-theme-site-logo img {
	max-width: 112px;
	padding: 5px 0;
}
.pp-advanced-menu a{
	cursor: pointer !important;
}

/*
.sites_header .elementor-item-active::after, 
.sites_header .elementor-item-active::before, 
.sites_header .elementor-item.highlighted::after, 
.sites_header .elementor-item.highlighted::before, 
.sites_header .elementor-item:focus::after, 
.sites_header .elementor-item:focus::before, 
.sites_header .elementor-item:hover::after, 
.sites_header .elementor-item:hover::before {
    max-width: 15px;
}

.sites_header .elementor-nav-menu li {
    padding: 0 15px;
}
.sites_header .elementor-nav-menu li a {
    font-size: 16px;
}

.sites_header .elementor-nav-menu li .sub-menu {
    padding: 15px 35px 18px 15px;
    border-radius: 7px;
    -webkit-box-shadow: 0 1px 1px rgb(255 255 255 / 10%);
    box-shadow: 0 1px 1px rgb(255 255 255 / 10%);
}

.sites_header .elementor-nav-menu li .sub-menu li {
    padding: 0;
}
*/

.sites_header .pp-advanced-menu--main .pp-advanced-menu ul {
    padding: 10px 0px;
}
.sites_header .pp-advanced-menu--main .pp-advanced-menu--dropdown a {
    font-size: 14px;
}
.sites_header .cpel-switcher__list li a {
	background-color: #FFFFFF;
	border-radius: 50px;
	padding: 8px 8px 8px 8px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #c7bdb1; 
	transition: 0.4s;
}
.sites_header .cpel-switcher__list li a:hover{
	color: #fff; 
	background-color: #c7bdb1;
}
.sites_header .cpel-switcher__list li .cpel-switcher__name{
	padding: 0 !important;
}
.cpel-switcher--layout-horizontal .cpel-switcher__lang:not(:last-child) {
	margin-right: 6px !important;
}

.affix {
    background-color: #fff !important;
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    z-index: 99999 !important;
    width: 100%;
    -webkit-box-shadow: 0 1px 1px rgb(255 255 255 / 10%);
    box-shadow: 0 1px 1px rgb(255 255 255 / 10%);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    padding: 0 !important;
	border-bottom: 1px solid #ebebeb;
	/* overflow: hidden; */
}

.sites_header.affix .pp-menu-toggle {
    /* border: 1px solid #C7BDB1; */ 
}


/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/
.sites-btn a.elementor-button {
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 0;
    border-radius: 0;
    color: #7A7E48;
    fill: #7A7E48;
    text-decoration: underline;
}
.sites-btn a.elementor-button:hover {
    color: #CEAB5E;
    fill: #CEAB5E;
    text-decoration: none;
}

.sites-btn-alt a.elementor-button {
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 0;
    border-radius: 0;
    color: #fff;
    fill: #fff;
    text-decoration: underline;
    position:relative;
    z-index:1;
    
    -webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: .4s all ease-in-out;
	-webkit-transition: .4s all ease-in-out;
	-moz-transition: .4s all ease-in-out;
	-ms-transition: .4s all ease-in-out;
	-o-transition: .4s all ease-in-out;
}
.sites-btn-alt a.elementor-button:hover {
    color: #fff;
    fill: #fff;
    text-decoration: none;
}

.indicator-btn a.elementor-button {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1;
    -webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: .4s all ease-in-out;
	-webkit-transition: .4s all ease-in-out;
	-moz-transition: .4s all ease-in-out;
	-ms-transition: .4s all ease-in-out;
	-o-transition: .4s all ease-in-out;
}


.indicator-btn a.elementor-button .elementor-button-icon {
    margin-right: 0;
    width: 128px;
    height: 128px;
    border: 1px solid #F1F0EC;
    border-radius: 50%;
    display: block;
    line-height: 128px;
    background: #F1F0EC;
    color: #CEAB5E;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.indicator-btn a.elementor-button .elementor-button-icon svg {
    width: 42px;
    height: auto;
}

.indicator-btn a.elementor-button:hover .elementor-button-icon {
    border: 1px solid #C7BDB1;
    background: #C7BDB1;
}

.indicator-btn a.elementor-button:hover .elementor-button-icon svg path {
    stroke: rgb(255,255,255,1);
}



.carousel_btn .elementor-swiper-button {
    background: #fff;
    color: #CEAB5E !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 0.75em rgba(0,0,0,.40));
}

.carousel_btn .elementor-swiper-button:hover {
    background: #C7BDB1;
    color: #fff !important;
}

.carousel_btn .elementor-swiper-button.elementor-swiper-button-prev{
    left:-22px !important;
}
.carousel_btn .elementor-swiper-button.elementor-swiper-button-next{
    right:-22px !important;
}

.announcements-btn a.elementor-button{
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 0;
    border-radius: 0;
    color: #7A7E48;
    fill: #7A7E48;
    text-decoration: none;
	position: relative;
	z-index: 666;
}
.announcements-btn a.elementor-button:hover{
    color: #CEAB5E;
    fill: #CEAB5E;
    text-decoration: underline;
}

/* Announcement */
.announcements_area{
    
}

.announcements_block{
    
}


/*--------------------------------------------------------------
# IMAGES
--------------------------------------------------------------*/
.images_shadow{
    filter: drop-shadow(0 0 0.75em rgba(0,0,0,.40));
}

.images_shadow.elementor-widget-image img{
    border-radius:20px;
}

.updown img{
    -webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: .4s all ease-in-out;
	-webkit-transition: .4s all ease-in-out;
	-moz-transition: .4s all ease-in-out;
	-ms-transition: .4s all ease-in-out;
	-o-transition: .4s all ease-in-out;
}

.images-colored-border img{
    background: #FFFDF7;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
}




/*--------------------------------------------------------------
# BORDER
--------------------------------------------------------------*/
.full-border{
    position: relative;
}
.full-border:before {
    content: '';
    position: absolute;
    top: -32px;
    left: -100%;
    border: 1px solid #7A7E48;
    z-index: 0;
    border-radius: 20px;
    width: 200%;
    height: 100%;
    min-height: 341px;
}

.general-border{
    position: relative;    
}

.general-border:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #7A7E48;
    z-index: 0;
    border-radius: 20px;
}

/*--------------------------------------------------------------
# HOME
--------------------------------------------------------------*/

.services-area{
    position: relative;
    overflow:hidden;
}

.services-area:before{
    -webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: .4s all ease-in-out;
	-webkit-transition: .4s all ease-in-out;
	-moz-transition: .4s all ease-in-out;
	-ms-transition: .4s all ease-in-out;
	-o-transition: .4s all ease-in-out;
}

.youth_services{
    position: relative;
    overflow: hidden;
}
.youth_services_image {
    position: absolute;
    right: -60px;
    bottom: 0;
    transform: rotate(16deg);
    z-index:0;
}
.youth_services_image.elementor-widget-image img{
    background: #FFFDF7;
    padding: 15px 15px 45px 15px;
    border-radius: 10px;
    max-width:280px;
}
.youth_services_image_another {
    position: absolute;
    right: 125px;
    bottom: 100px;
    transform: rotate(-18deg);
    z-index: -1;
}
.youth_services_image_another.elementor-widget-image img{
    background: #FFFDF7;
    padding: 15px 15px 45px 15px;
    border-radius: 10px;
    max-width:280px;
}

.youth_services_image_another.elementor-widget-image:hover img,
.youth_services_image.elementor-widget-image:hover img{
    filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}

/*
.youth_services_image_another img,
.youth_services_image img{
    -webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: .4s all ease-in-out;
	-webkit-transition: .4s all ease-in-out;
	-moz-transition: .4s all ease-in-out;
	-ms-transition: .4s all ease-in-out;
	-o-transition: .4s all ease-in-out;
}
*/

.aboutus_illustration{
    position: relative;
    /* overflow: hidden; */
}
.aboutus_illustration:before{
    content: '';
    position: absolute;
    top:-410px;
    left: 0px;
    width: 751px;
    height: 819px;
    background: url('assets/img/lines.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    z-index: -1;
	
	animation: sideHerbSway infinite 5s linear;
	transform-origin: 0% 0;
	
	opacity:.1;
}


.aboutus-area{
    position: relative;
    overflow: hidden;
}
.aboutus-area:before{
    top:-410px;
    left:0;
    z-index:-1;
    animation: sideHerbSway infinite 5s linear;
	transform-origin: 0% 0;
}




.about_section{
    position: relative;
}
.about_image_one {
    position: absolute;
    left: 160px;
    top: 140px;
    transform: rotate(16deg);
    z-index: 0;
}
.about_image_one.elementor-widget-image img{
    background: #FFFDF7;
    padding: 15px 15px 35px 15px;
    border-radius: 10px;
    max-width:215px;
}
.about_image_two {
    position: absolute;
    left: 40px;
    top: 0;
    transform: rotate(-18deg);
    z-index: 0;
}
.about_image_two.elementor-widget-image img{
    background: #FFFDF7;
    padding: 15px 15px 35px 15px;
    border-radius: 10px;
    max-width:215px;
}

.about_text{
    position: relative;
}
.about_text:after {
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    right: -100%;
    width: 120%;
    height: 100%;
    background-color: #7A7E48 !important;

    z-index: -1;
}

.all_services {
    position: relative;
    overflow:hidden;
}

.services-cta {
    position: absolute;
    right: 0;
    bottom: 20px;
    background: #C7BDB1;
    padding: 30px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 346px;
}

.announcement_block .swiper-slide .bulletin-block {
    max-width: 340px;
    margin-right: inherit;
    border: 1px solid #C2CBA3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    min-height: 380px;
}
/*
.announcement_block .swiper-slide .bulletin-block .e-con-inner {
    border: 1px solid #C2CBA3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
*/

.announcement_block .swiper-slide .bulletin-block {
    padding-top: 0px;
    padding-bottom: 0;
    transform: scale(1);
    -ms-transform: scale(1);
    top: 0;
}
.announcement_block .swiper-slide-next .bulletin-block {
    left: 45px;
}

.announcement_block .swiper-slide-active .bulletin-block {
    transform: scale(1.15);
    -ms-transform: scale(1.15);
    padding-top: 90px;
    padding-bottom: 0px;
    left: 45px;
    top: -60px;
    max-width: unset;
    margin-right: auto;
}

.announcement_block .swiper-slide-active .bulletin-block .elementor-heading-title {
    transform: scale(.85);
}
.announcement_block .swiper-slide-active .bulletin-block .elementor-widget-text-editor {
	transform: scale(.85);
}

.announcement_block .swiper-slide-active .bulletin-block .announcements-btn a.elementor-button {
    transform: scale(.85);
}

/*
.announcement_block .swiper-slide-active .bulletin-block .scaling-area{
    z-index:2;
}
*/

.sites-btn.ann-btn a.elementor-button {
    position: relative;
    top: -130px;
    z-index: 10;
}

/*--------------------------------------------------------------
# JESUS
--------------------------------------------------------------*/
.over-image-area{
	position: relative;
}
.over-image-inner img{
	position: relative;
	border-top-left-radius: 20px;
	z-index: -1;
}
.over-image-right img {
    position: absolute;
    top: auto;
    bottom: -100px;
    left: auto;
    right: -130px;
    z-index: 0;
    max-width: 260px;
    border-bottom-right-radius: 20px;
}

.haricane{
    position: relative;
}

.haricane-image img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    height: 110px;
    transform: translate(-50%, 0);
    -webkit-animation: swinging 3.5s ease-in-out forwards infinite;
    animation: swinging 3.5s ease-in-out forwards infinite;
    z-index: 0;
    opacity: .6;
}

.chain-block:before{
    -webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: .4s all ease-in-out;
	-webkit-transition: .4s all ease-in-out;
	-moz-transition: .4s all ease-in-out;
	-ms-transition: .4s all ease-in-out;
	-o-transition: .4s all ease-in-out; 
}

.upcoming{
    position: relative; 
}

.upcoming img{
    background: #FFFDF7;
    padding: 15px 15px 35px 15px;
    border-radius: 10px;
    max-width: 200px;
    transform: rotate(16deg);
}


/*--------------------------------------------------------------
# TEAM
--------------------------------------------------------------*/
.team-block img{
    filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}
.team-block:hover img{
    filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
}

.team-block .pp-tm-wrapper .pp-tm-image img {
    display: block;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
}


/*--------------------------------------------------------------
# PLAN YOUR VISIT
--------------------------------------------------------------*/
.single_plan{
    position: relative;
    right: -100px;
    z-index: 1;
}

.single_plan.alternative{
    position: relative;
    left: -100px;
    z-index: 1;
}

.haricane-image-another img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 110px;
    -webkit-animation: swinging 3.5s ease-in-out forwards infinite;
    animation: swinging 3.5s ease-in-out forwards infinite;
    z-index: 0;
    opacity: .6;
}

.plan-counter{
    -webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: .4s all ease-in-out;
	-webkit-transition: .4s all ease-in-out;
	-moz-transition: .4s all ease-in-out;
	-ms-transition: .4s all ease-in-out;
	-o-transition: .4s all ease-in-out;     
}

.plan-counter .elementor-counter-number-wrapper {
    font-size: 120px !important;
    font-weight: 300 !important;
}


/*--------------------------------------------------------------
# CONTACT
--------------------------------------------------------------*/
.single_contact_box{
    padding: 35px 0;
}
.single_contact_box .elementor-widget-text-editor a {
    text-decoration: none;
}
.single_contact_box .elementor-widget-text-editor a:hover {
    text-decoration: underline;
}
.contact_form_area {
    padding: 60px 40px 5px 40px;
    margin: 0;
    background: #FFFDF7;
    border-radius: 12px;
    box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
}
.custom_form .left_half {
    width: 49%;
    float: left;
    margin-right: 1%;
}
.custom_form .right_half {
    width: 49%;
    float: left;
    margin-left: 1%;
}
.custom_form .full_width {
    width: 100%;
}
.custom_form .full_width, 
.custom_form .left_half, 
.custom_form .right_half {
    margin-bottom: 16px;
    display: block;
/* 	overflow:hidden; */
}
.custom_form input[type="text"], 
.custom_form input[type="email"], 
.custom_form input[type="tel"], 
.custom_form input[type="date"],
.custom_form input[type="number"], 
.custom_form select,
.custom_form textarea {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border-radius: 0px;
    background: transparent;
    color: #7A7E48;
    font-weight: normal;
    min-height: 45px;
    border: 1px solid #7A7E48;
    border-radius: 7px;
    padding: 15px;
	position: relative;
	z-index: 999;
}

.custom_form input[type="submit"] {
    display: block;
    outline: none;
    font-weight: 400;
    color: #7A7E48;
    fill: #7A7E48;
    border: 1px solid #7A7E48;
    background-color: transparent;
    padding: 7px 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 auto;
    width: auto;
}

.custom_form input[type="submit"]:hover,
.custom_form input[type="submit"]:focus,
.custom_form input[type="submit"]:visited{
    text-decoration: none;
	outline: none;
    background-color: transparent;
    color: #c7bdb1;
    fill: #c7bdb1;
    border: 1px solid #c7bdb1;
}

.custom_form .marginalign-left input[type="submit"] {
    margin: unset;
}

.custom_form textarea {
    height: 130px;
    display: block;
}

.custom_form ::-webkit-input-placeholder { /* Edge */
  color: #7A7E48;
}

.custom_form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #7A7E48;
}

.custom_form ::placeholder {
  color: #7A7E48;
}

.testimony_acceptence{
    
}


.wpcf7-spinner {
    display: block;
    text-align: center;
    margin: 15px auto;
    background-color: #7A7E48;
}
.wpcf7 form.sent .wpcf7-response-output {
	margin: 0;
	padding: 0;
	border: none;
	text-align: center;
	color: #7A7E48;
}


/*--------------------------------------------------------------
# ABOUT
--------------------------------------------------------------*/
.marquee_section {
	position: relative;
	bottom: 0;
	left: 0;
	z-index: 10;
	right: 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.marquee_wrap {
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    will-change: transform; 
    animation: marquee 10s linear infinite;
}

.marquee_logo {
    width: 300%;
}

/*
.marquee_box { 
    will-change: transform; 
    animation: marquee 10s linear infinite;
}
*/

.marquee_logo .marquee_box {
    width: 150px;
    height: 100px;
    background: rgba(255,255,255,1);
    border: 1px solid #eee;
    padding: 20px;
    margin: 0 20px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.marquee_logo .marquee_box h2{
    display:none;
    visibility: none;
    font-size:0;
    line-height:0 !important;
}

.marquee_box img {

}

.marquee_text {
    margin: 0 3vw 0 0;
    padding: 0;
    cursor: pointer;
    color: #C7BDB1;
    opacity: .4;
    position: relative;
    /* font-size: 36px; */
}
.marquee_text:hover {
    color: #C7BDB1;
    opacity:.6;
}

.marquee_text i {
    font-size: 36px;
    position: absolute;
    top: 50%;
    left: -42px;
    transform: translate(0px, -50%);
}

@keyframes marquee {
  from { transform: translateZ(0) }
  to { transform: translate3d(-35%, 0, 0) }
}

/*--------------------------------------------------------------
# SERMONS
--------------------------------------------------------------*/
.sermons-block .e-loop-item {
	background-color: #fff;
	border: none !important;
	box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 20px;
	padding: 0 0 30px 0;
}
.sermons-block .e-loop-item .elementor-widget-image img{
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.sermons-block .e-loop-item .single-sermon::before {
	top: auto;
	left: auto;
	bottom: -47px;
	right: 0;
	width: 135px;
	height: 170px;
	z-index: 0;
	opacity: .06;
}
.video_btn{
	position: absolute;
	top: 0;
	left: 0;
	z-index:1;
}

/*--------------------------------------------------------------
# CHRISTIAN EDUCATION
--------------------------------------------------------------*/

.education-block .e-loop-item {
	background-color: transparent;
	/* border: 1px solid #7A7E48 !important; */
	box-shadow:none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 20px;
	padding: 0 0 30px 0;
}
.education-block .e-loop-item .elementor-widget-image img{
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

/*
.education-block .e-loop-item .single-education::before {
    
	top: auto;
	left: auto;
	bottom: -30px;
	right: 0;
	width: 135px;
	height: 170px;
	z-index: 0;
	-webkit-animation: updown 2s linear 0s infinite;
	animation: updown 2s linear 0s infinite;
	transition: .4s all ease-in-out;
	-webkit-transition: .4s all ease-in-out;
	-moz-transition: .4s all ease-in-out;
	-ms-transition: .4s all ease-in-out;
	-o-transition: .4s all ease-in-out;
}
*/

/*
.education_btn {
    position: absolute;
    top: 45%;
    left: 0;
    z-index: 1;
    transform: translate(0, 0%);
}
*/


.announcement_block .swiper-slide .education-block {
    border: none;
}

.equipping_block .swiper-slide .education-block .scaling-area {
    background: transparent !important;
    border-left: 1px solid #7A7E48;
    border-right: 1px solid #7A7E48;
    border-bottom: 1px solid #7A7E48;
}

/*
.education-block .e-loop-item .more_content{
    border-left: 1px solid #7A7E48;
    border-right: 1px solid #7A7E48;
    border-bottom: 1px solid #7A7E48;	
}
*/

.announcement_block .swiper-slide .education-block .scaling-area {
   min-height: 250px;
}

.scaling-area .elementor-widget-text-editor{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 3;
}

.announcement_block .swiper-slide-active .education-block .scaling-area {
    min-height: 200px;
}


/*--------------------------------------------------------------
# LIFE GROUPS
--------------------------------------------------------------*/
.group_at_glance .pp-slider-arrow {
    top: 40%;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}

.group_at_glance .swiper-button-prev:after, 
.group_at_glance .swiper-rtl .swiper-button-next:after,
.group_at_glance .swiper-button-next:after, 
.group_at_glance .swiper-rtl .swiper-button-prev:after  {
    display: none;
    visibility: hidden;
}

.group_at_glance .swiper-container .swiper-button-next, 
.group_at_glance .swiper-container .swiper-button-prev, 
.group_at_glance .swiper-container-wrap .swiper-button-next, 
.group_at_glance .swiper-container-wrap .swiper-button-prev {
    background-color: #c7bdb1;
    color: #fff;
}
.group_at_glance .swiper-container .swiper-button-next:hover, 
.group_at_glance .swiper-container .swiper-button-prev:hover, 
.group_at_glance .swiper-container-wrap .swiper-button-next:hover, 
.group_at_glance .swiper-container-wrap .swiper-button-prev:hover {
    background-color: #CEAB5E;
}

.group_at_glance .swiper-container-dots-outside .swiper-pagination, 
.group_at_glance .swiper-container-wrap-dots-outside .swiper-pagination {
    margin-top: 40px;
}



/*--------------------------------------------------------------
# EVENTS & EVENTS CALENDAR
--------------------------------------------------------------*/

.evofc_lightbox.show {
    z-index: 9999999;
}
.evcal_evdata_row {
    align-items: baseline;
}

.evo_lightboxes .evopopclose, 
.evo_lightboxes .evolbclose {
    background-color: #c7bdb1;
    filter: drop-shadow(0 0 0.75em rgba(0,0,0,.40));
}

.evo_lightboxes .evopopclose:hover, 
.evo_lightboxes .evolbclose:hover {
    background-color: #7A7E48;
}

.evo_lightboxes .evolbclose:before, 
.evo_lightboxes .evolbclose:after {
    background-color: #fff;
}
.evo_lightboxes .evolbclose:hover:before, 
.evo_lightboxes .evolbclose:hover:after {
    background-color: #fff;
}


.petra_events .ajde_evcal_calendar #evcal_head.calendar_header #evcal_cur, 
.petra_events .ajde_evcal_calendar .evcal_month_line p, 
.petra_events .ajde_evcal_calendar .evo_footer_nav p.evo_month_title {
    font-weight: 600;
    color: #7A7E48;
}

.petra_events .ajde_evcal_calendar .calendar_header .evcal_arrows, 
.petra_events .evo_footer_nav .evcal_arrows {
    border-color: #c7bdb1;
    background-color: #c7bdb1;
    filter: drop-shadow(0 0 0.75em rgba(0,0,0,.40));
}
.petra_events .ajde_evcal_calendar .calendar_header .evcal_arrows:before, 
.petra_events .evo_footer_nav .evcal_arrows:before {
    border-color: #fff;
}

.petra_events .ajde_evcal_calendar .calendar_header .evcal_arrows:hover,
.petra_events .evo_footer_nav .evcal_arrows:hover {
    background-color: #7A7E48;
    border-color: #7A7E48;
}

.petra_events .eventon_fullcal .eventon_fc_daynames .evo_fc_day {
    background-color: #7A7E48;
    color: #fff;
}

.petra_events .eventon_fullcal .evo_fc_day.bb, 
.petra_events .eventon_fullcal .evo_fc_day.nobrt, 
.petra_events .eventon_fullcal .evo_fc_day.blsr, 
.petra_events .eventon_fullcal .evo_fc_day.br, 
.petra_events .eventon_fc_days, 
.petra_events .eventon_fc_daynames, 
.petra_events .eventon_fullcal .evo_fc_day {
    border-color: rgba(122,126,72,.1);
    font-weight: 400;
}

.petra_events .eventon_fullcal .evo_fc_day {
    font-size: 14px;
}
.petra_events .evofc_month_grid .eventon_fc_days .evo_fc_day.today:before {
    background-color: #c7bdb1;
}
.petra_events .eventon_fc_days .evo_fc_day.has_events span.evo_day_in{
    color: #7A7E48;
}
.petra_events .eventon_fullcal .eventon_fc_days .evo_fc_day.on_focus {
    background-color: #F1F0EC;
}
.petra_events .evo_cal_above span.evo-gototoday-btn {
    background-color: #c7bdb1;
}
.evo_cal_above span.evo-gototoday-btn:hover {
    background-color: #7A7E48;
}


.petra_events .eventon_events_list .eventon_list_event.no_events {
    display: none;
}

.petra_events_terms.elementor-widget-text-editor ul li{
	padding: 0px 0px 12px 0px;
}



/*--------------------------------------------------------------
# Hapiness Group
--------------------------------------------------------------*/
.single_session .elementor-widget-flip-box{
    width: 220px;
	height: 220px;
	border-radius: 50%;
	display: block;
	margin: 0 auto;    
}
.single_session .elementor-widget-flip-box .elementor-flip-box{
    width: 220px;
	height: 220px;
	border-radius: 50%;
	display: block;
	margin: 0 auto;     
}
.single_session .elementor-flip-box .elementor-flip-box__front {
	background-color: #fff;
	border: none !important;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
	box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
	border-radius: 50%;
}

.single_session .elementor-flip-box .elementor-flip-box__back {
	background: #7A7E48;
	color: #fff;
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
	box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
}

.single_session .elementor-flip-box .elementor-flip-box__front .elementor-flip-box__layer__title {
    margin: 0;
    font-size: 18px;
    line-height: 21px !important;
}

.single_session .elementor-flip-box .elementor-flip-box__back .elementor-flip-box__layer__title {
    color: #fff;
    margin: 0;
    font-size: 22px;
    line-height: 28px !important;
}


.single_session .elementor-flip-box__layer__inner{
    position: relative;
}
.single_session .elementor-flip-box .elementor-flip-box__front .elementor-flip-box__layer__description {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    font-size: 60px;
    color: rgba(0,0,0,.02);
    font-weight: 700;
    transform: translate(-50%, 0px);
}
.single_session .elementor-flip-box .elementor-flip-box__back .elementor-flip-box__layer__description {
    content: '';
    position: absolute;
    top: auto;
    bottom: -41px;
    left: 50%;
    font-size: 60px;
    color: rgba(255,255,255,.05);
    font-weight: 700;
    transform: translate(-50%, 0px);

}
.animated_title {
    background: #c7bdb1;
    padding: 10px 20px 0px 20px;
    width: fit-content;
    border-top-left-radius: 18px;
}
.animated_title .elementor-headline{
    text-transform: uppercase;
    color: #fff;
    font-weight:500;
}
.animated_title .elementor-headline .elementor-headline-dynamic-text {
    color: #fff;
    opacity: 1;
}





/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.sites_footer{
    opacity: .6;
}

.footer-credit a{
    color: #7A7E48;
}


/*--------------------------------------------------------------
# GTTranslate
--------------------------------------------------------------*/
a.glink {
	position: relative;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 50%;
	padding: 0px 5px 0 7px;
	width: 40px;
	height: 40px;
	display: inline-flex;
	margin-left: 5px;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	color: #c7bdb1;
	font-weight: 400 !important;

}
a.glink:hover {
	background-color: #c7bdb1;
	border: 1px solid #c7bdb1;
	color: #fff;
}
.gtranslate_wrapper a.glink:nth-child(2) {
	text-indent: -9999999px;
}
.gtranslate_wrapper a.glink:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 19px;
	height: 23px;
	background: url('../../../wp-content/uploads/2024/10/zhcn1.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
	transform: translate(-50%,-50%);
}
.gtranslate_wrapper a.glink:hover:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 19px;
	height: 23px;
	background: url('../../../wp-content/uploads/2024/10/zhcn2.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
	transform: translate(-50%,-50%);
}








