@charset "utf-8";
/* CSS Document */
a {
    color: #0071bd;
}
p {
    margin-bottom: 30px;
	font-size:18px;
}
#btn-search .icon-search{font-size:25px;}
.social-icons.social-icons-colored .social-vimeo a, .social-icons.social-icons-colored-hover .social-vimeo a:hover {
    background-color: #f78d04;
}
.post-item .post-image .post-meta-category, .post-item .post-slider .post-meta-category, .post-item .post-video .post-meta-category, .post-item .post-audio .post-meta-category, .post-item .post-quote-img .post-meta-category {
    background-color: #0071bd;
}
a:not(.btn):not(.badge):hover, a:not(.btn):not(.badge):focus, a:not(.btn):not(.badge):active {
    color: #f78d04;
}
.single-post .post-item .post-item-description .post-meta-date a:hover, .single-post .post-item .post-item-description .post-meta-comments a:hover, .single-post .post-item .post-item-description .post-meta-category a:hover{
	color: #f78d04;
}
.post-item .post-image .post-meta-category a, .post-item .post-slider .post-meta-category a, .post-item .post-video .post-meta-category a, .post-item .post-audio .post-meta-category a, .post-item .post-quote-img .post-meta-category a {
    color: #ffffff;
}
#mainMenu nav > ul > li > a {
	color: #0071bd;	
}
#mainMenu nav > ul > li.hover-active > a, #mainMenu nav > ul > li.hover-active > span, #mainMenu nav > ul > li.current > a, #mainMenu nav > ul > li.current > span, #mainMenu nav > ul > li:hover > a, #mainMenu nav > ul > li:hover > span, #mainMenu nav > ul > li:focus > a, #mainMenu nav > ul > li:focus > span {
    color: #f78d04;
}
.post-item .post-item-description > h2, .post-item .post-item-description > h2 > a {
    color: #87be46;
}
.pagination .page-item:not(.disabled).active > .page-link, .pagination .page-item:not(.disabled):active > .page-link, .pagination .page-item:not(.disabled):focus > .page-link, .pagination .page-item:not(.disabled):hover > .page-link {
    background-color: #f78d04;
    border-color: #f78d04;
    color: #fff;
}
#scrollTop:after, #scrollTop:before {
    background-color: #0071bd;
}
button.btn, .btn:not(.close):not(.mfp-close), a.btn:not([href]):not([tabindex]) {
    background-color: #f78d04;
    border-color: #f78d04;
}
button.btn:hover, button.btn:focus, button.btn:not(:disabled):not(.disabled):active, button.btn:not(:disabled):not(.disabled).active, .btn:not(.close):not(.mfp-close):hover, .btn:not(.close):not(.mfp-close):focus, .btn:not(.close):not(.mfp-close):not(:disabled):not(.disabled):active, .btn:not(.close):not(.mfp-close):not(:disabled):not(.disabled).active, a.btn:not([href]):not([tabindex]):hover, a.btn:not([href]):not([tabindex]):focus, a.btn:not([href]):not([tabindex]):not(:disabled):not(.disabled):active, a.btn:not([href]):not([tabindex]):not(:disabled):not(.disabled).active {
    background-color: #89c13a;
    border-color: #89c13a;
}
#search .btn-search-close {
    background-color: #0071bd;
}
.single-post .post-item .post-item-description > h2, .single-post .post-item .post-item-description > h2 > a {
    font-size: 35px;
    color: #89c040;
}
.single-post .post-item .post-item-description p {
    font-size: 18px;
}
.lead {
    font-size: 18px;
}
.blockquote {
    border-left: 3px solid #0071bd;
    padding: 0 20px;
    font-style: italic;
	margin-bottom:30px;
}
.blockquote p{font-style: italic;font-size: 20px !important;}
blockquote {
    border-left: 3px solid #0071bd;
    padding: 0 20px;
    font-style: italic;
	margin-bottom:30px;
}
blockquote p{font-style: italic;font-size: 20px !important;}
.social-icons li a{color: #87be3f;}

section.text-light.fullscreen{background-size:cover !important;}
section.text-light.fullscreen .container{
	max-width: 100%;
}
.post-image .post-meta-category{display:none;}
section.widget.widget_text{padding-top:0;}
.steps {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}
.steps ul {
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
}
.steps ul li {
    display: inline;
    margin-right: 6px;
	width:25%;
}
.steps ul li > a {
    background: #fff;
    color: #9896a6;
    border-radius: 5px;
    display: inline-block;
    padding: 1rem;
}
.steps ul li > a {
    text-align: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    padding: 1.2rem;
}
.steps ul li.current a, .steps ul li.current a:hover, .steps ul li.current a:active {
    background: #2250fc;
    color: #ffffff;
}
.steps ul li::after {
    content: "";
    position: absolute;
    top: 2.1rem;
    left: 0;
    right: 0;
    z-index: -1;
    border: 1px dashed #e6e8eb;
}
.steps ul li .title{margin-top:0;     word-break: break-word;}
.steps ul li .number{font-size:20px; color:#f78d04;}



/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  display:block;
  width: 100%;
  height: 300px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  margin-bottom:30px;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  
  
}
a.flip-card .flip-card-front{z-index:2;}
a.flip-card:hover .flip-card-back{z-index:3;}
/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #000;
  color: black;
}
.flip-card-front img{width:100%; height:100%; opacity:.7;}
/* Style the back side */
.flip-card-back {
  background-color: #86bd3d;
  color: white;
  transform: rotateY(180deg);
  height:100%;
  padding:15px;
}
.flip-card-back p:first-child{color:#fff; font-size:16px; line-height:23px; margin-bottom:15px;}
.flip-card-back p:nth-child(2){color:#fff; font-size:13px; line-height:18px;  margin-bottom:15px;}
.flip-card-back button{background-color:#0071bd !important; border-color:#0071bd !important;}
.flip-card-front p{position:absolute; top:15px; z-index:99; color:#fff; font-size:16px; line-height:23px; padding:0 15px;}
.flip-card-front span.location{color:#fff; text-transform:uppercase; font-size:15px; position:absolute; bottom:15px; left:15px;}
.team-members .team-member .team-image > a{display:block;}
.team-members .team-member .team-image > a > img {
    width: 100%;
    border-radius: 5px 5px 0 0;
}
.team-members .team-member .team-desc > span {
    color: #777;
}
.accordion .ac-item {
    margin-bottom: 30px;
}
.ac-title img{margin-right:10px; width:150px; float:left;}
.ac-title > label{line-height:20px; display:block; margin-left:160px; cursor:pointer;}
.ac-title > label > span{padding-top:6px; display:inline-block}
.ac-title > p{margin-top:20px; clear:both; font-style:italic;}
.ac-title.big{font-size:24px !important;}
.ac-title.big > span{font-size:18px; display:block; padding-left:40px; line-height:1.5em;}
.offering.accordion .ac-item {
    margin-bottom: 10px;
}

body, html{height:100%;}
/*#slider{height:750px;}*/
.inspiro-slider .flickity-button::before {
    color: #a6a7a9;
}
.inspiro-slider.dots-creative .flickity-page-dots .dot, .carousel.dots-creative .flickity-page-dots .dot{
	background-color:#cecfd1;	
}
.inspiro-slider.dots-creative .flickity-page-dots .dot:after, .carousel.dots-creative .flickity-page-dots .dot:after{
	background-color:#0072bb;	
}
.flickity-page-dots .dot:after {
    border-radius: 0;
}
.inspiro-slider.dots-creative .flickity-page-dots .dot, .carousel.dots-creative .flickity-page-dots .dot {
    height: 6px;
    width: 40px;
}
.flickity-button:hover {
    background-color: #0072bb;
}
.grid li {
    padding: 20px;
	cursor:default;
}
.grid li:hover{
	cursor:default;
	background-color:transparent;	
}
.grid li a{cursor:default;}
.slide.background-image{position:relative;}

.inspiro-slider .slide {
    
    background-position: 50% 70% !important;
}

.slide.background-image a{
	position:absolute !important;
	bottom:45px;
	margin:0 auto;
	left:0;
	right:0;
	width:300px;
	z-index:99;
}
.counter {
    margin-bottom: 0;
}
section {
    padding: 40px 0;
}
ul.menu li.menu-item-has-children:hover > ul.sub-menu {
    background-position: right bottom;
    background-repeat: no-repeat;
    min-width: 230px;
    top: auto;
    background-color: #fff;
    border: 0;
    color: #000;
    border-style: solid;
    border-color: #eee;
    border-width: 1px!important;
    left: auto;
    margin: 0;
    margin-top: -6px;
    border-radius: 4px;
    box-shadow: 0 33px 32px rgb(0 0 0 / 10%);
    padding: 10px;
    position: absolute;
}
ul#menu-main-menu li a {
    font-weight: normal;
	text-transform:uppercase;
	font-size: 13px;
}
ul#menu-main-menu li > ul > li{line-height:normal !important; padding: 10px 0;}
.post-item .post-item-description > p{font-size:15px;    color: #777;}
button.btn.btn-white, button.btn.btn-light, .btn:not(.close):not(.mfp-close).btn-white, .btn:not(.close):not(.mfp-close).btn-light, a.btn:not([href]):not([tabindex]).btn-white, a.btn:not([href]):not([tabindex]).btn-light {
    background-color: #fff;
    border-color: #87be3f;
    color: #87be3f;
}
.btn:not(.close):not(.mfp-close).btn-light:hover{
	border-color: #f78d04;
    background-color: #f78d04;
    color: #fff;
}
.alignleft{float:left; margin:0 20px 20px 0; width:auto !important; max-width:100%;}
.alignright{float:right; margin:0 0 20px 20px; width:auto !important; max-width:100%;}
.content  ul li{font-size:18px; /*list-style-position:inside;*/ margin-left:20px; margin-bottom:15px;}
#sb_instagram .sb_instagram_header{display:none;}
#sb_instagram .sbi_follow_btn a {
        background-color: #f78d04;
    	border-color: #f78d04;
    color: #fff;
}
.sbi_photo > img{display:none !important;}
/*.flickity-slider > div > img{
    width: auto;
}*/
/*.grid-layout{padding:15px;}
.post-item.border{ padding:10px !important; margin-bottom:10px;}
.post-item.border:hover{box-shadow: 0 0 20px #888888; z-index:9999;}
*/
.my-shadow-box .post-item.border{ padding:10px !important;}
.my-shadow-box .post-item-wrap{padding:10px;}
.my-shadow-box .post-item-wrap:hover{box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.14);
-webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.14);
-moz-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.14); transition: all 0.5s ease-in-out;}
.my-shadow-box .post-item.border > .post-item-wrap > .post-item-description {
    padding: 24px 0 !important;
}


.page-menu {

    height: auto;
    
}
.page-menu nav > ul > li{padding:0 30px;}
.page-menu nav > ul > li > a {
	    line-height: 0;
    padding: 0;
}
.page-menu.menu-lines nav > ul > li:hover > a:after, .page-menu.menu-lines nav > ul > li.active > a:after {
    width: 100%;
    left: 0%;
    background-color: transparent;
}
.fullscreen .container-fullscreen h1{font-size:45px;}
.fullscreen .container-fullscreen p.lead{font-size:23px;}
.page-menu nav > ul > li {
	line-height: normal;
	margin-top:10px;
}
.page-menu nav > ul > li.project-share img{opacity:0.5; width:20px;}
.page-menu nav > ul > li > input{border:0; background: none; font-size:40px !important; padding-top:0 !important;  min-height:0 !important; line-height:10px !important;padding-bottom: 20px !important;}
.page-menu nav > ul > li > input:first-child{position:absolute; top:-30px; opacity:0.5; background:url(https://re-emergingworld.com/wp-content/uploads/2021/05/copy.png) no-repeat; text-indent:-9999px;}
.page-menu nav > ul > li > input:hover{opacity:1;}
.page-menu nav > ul > li > input:focus{opacity:0.2;}
.page-menu nav > ul > li > input#paste-box{font-size:14px !important; border:0; position:absolute;bottom: -15px;
    left: 52%; width:55px; padding:0; height:auto;  display:none;}
.page-menu nav > ul > li > input#paste-box:focus{border:0; outline:0; }
.a2a_svg.a2a_s__default{background-color: #87be3f !important;}
.addtoany_list a:hover img, .addtoany_list a:hover span {
    opacity: 1 !important;
	background-color: #f78d04 !important;
}
.project-share{margin-top:0 !important;}
.project-share > div > div > a{display:none;}
.project-share > div > div > a:nth-child(5){display:block;}
#blog .a2a_dd.addtoany_share_save.addtoany_share{display:none;}
#blog .addtoany_shortcode{display:inline-block; float:right;}


/* ==== 22-02-2023 ====*/
h2 {
  color:#3e3e3e;
}
.post-item .post-item-description > h2, .post-item .post-item-description > h2 > a {
    color: #3e3e3e;
}
ul#menu-main-menu > li > a {
    font-size: 15px;
	color: #3e3e3e;
}
ul#menu-main-menu li a {
	color: #3e3e3e;
}
ul#menu-main-menu li a:hover {
	color: #f78d04;
}
ul#menu-main-menu li > ul > li {
    padding: 7px 0;
    border-bottom: 1px solid #eaeaea;
}
ul#menu-main-menu li > ul > li:last-child {
    border-bottom: 0 solid #eaeaea;
}
.text-light.fullscreen{padding:0; display:block; min-height: 65vh;}
.text-light.fullscreen > .container{/*margin-top:20px;*/ margin-top:10%; margin-bottom:20px;}
/* ==== 22-02-2023 ends ====*/

/* ==== 23-02-2023 ====*/
#footer ul li{list-style-position:inside; list-style-type:none;}
#footer p{font-size:14px;}
#footer h4{color: #3e3e3e;}
.footer-top{background:#d6dadf;color:#484848; padding:10px 0;}
.newsletter-text{padding-top:16px; font-size:20px; font-weight:bold; text-transform:uppercase;}
.es-field-wrap{margin-bottom:0; margin-top:7px;}
.es-field-wrap label{float:left; width:300px;}
.es-field-wrap label input{width:100%; border:0; border-top-left-radius:4px; border-bottom-left-radius:4px;}
input[type=submit]{border:0; background:#f78d04; color:#fff; border-top-right-radius:4px; border-bottom-right-radius:4px;}
.es_subscription_message.error{
	position: absolute;
    z-index: 99;
    left: 31px;
    font-size: 12px;
    top: 4px;
}
/* ==== 23-02-2023 ends ====*/
.content-left{float:left; padding-right:15px; width:50%;}
.content-left > img{width:100% !important;}
.content-right{float:left; width:50%;}
.page-id-9494 .text-light.fullscreen{display:none;}
.forminator-ui#forminator-module-9493.forminator-design--material .forminator-button-upload{background-color: #d6dadf !important; color:#484848 !important;}
.forminator-ui#forminator-module-9493.forminator-design--material .forminator-button-submit{
	background-color: #f78d04 !important;
    border-color: #f78d04 !important;
	color:#fff !important;
	border-radius: 5px 5px 5px 5px;
}
.butn-light{
	background-color: #d6dadf !important;
	border:1px solid #d6dadf !important;
    color: #484848 !important;
}

@media (min-width: 1500px){
	ul#menu-main-menu > li {
		padding: 0 14px;
	}
	ul#menu-main-menu > li > a {
		font-size: 17px;
	}
}
@media (min-width: 1200px) and (max-width: 1600px){
	ul#menu-main-menu > li > a {
		font-size: 12px;
	}
}

@media (min-width: 768px){
	.fullscreen .container-fullscreen > .col-md-6 {
		-ms-flex: 0 0 40%;
		flex: 0 0 40%;
		max-width: 40%;
	}
}
@media (max-width: 1024px){
	ul#menu-main-menu {
		display: block;
		padding-top:30px;
	}
	ul#menu-main-menu > li{text-align:center;}
	ul.menu li.menu-item-has-children:hover > ul.sub-menu {
		position:relative;
	}
	.page-menu nav > ul > li {
		padding: 0;
		margin-bottom:10px;
	}
	.page-menu nav > ul > li > input:first-child {
		position: relative;
		top: 0;
		left:0;
	}
	.page-menu.menu-lines nav > ul > li > a{margin-bottom:10px;}
}
@media (max-width: 767px){
	#header #logo > a img {
		max-width: 200px;
	}
	.slide.background-image a{bottom:5px;}
	.flickity-page-dots{display:none;}
	.flickity-button.previous{
		/*display:none;*/
	}
	.carousel .flickity-button.next{
		/*display:none;*/
	}
	.inspiro-slider .flickity-button{/*display:none;*/}
	.numbers{margin-top:30px;}
	.ac-title img {
		width: 100px;
	}
	.ac-title > label {
		margin-left: 110px;
	}
	.steps ul{flex-direction: column;}
	.steps ul li {
		display: block;
		margin-right: 0;
		width: 100%;
		margin-bottom:25px;
	}
	.steps ul li:after {
		border: 0;
	}
	
	.inspiro-slider .slide {
		background-size: 100% auto;
		background-position: 50% 50% !important;
	}
	.content-left{float:none; padding-right:0; width:100%;}
	.content-left > img{width:100% !important;}
	.content-right{float:none; width:100%;}
	
}
@media (max-width: 400px){
	.inspiro-slider .slide {
		background-size: 100% auto;
		background-position: 50% 20% !important;
	}
	.inspiro-slider.slider-fullscreen {
    	height: 40vh;
	}
}

