/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor child theme via Freshy
Author: Freshy
Author URI: https://freshysites.com/
Template: hello-elementor
Version: 2.0.0
*/

/* Add your own styles at the bottom */

/* -- COLORS -- */
.white, 
.white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white li, .white a,
h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, li.white, a.white, p.white {
	color: #fff;
}

.black, 
.black h1, .black h2, .black h3, .black h4, .black h5, .black h6, .black li, .black a,
h1.black, h2.black, h3.black, h4.black, h5.black, h6.black, li.black, a.black, p.black {
	color: #000;
}

.primary, 
.primary h1, .primary h2, .primary  h3, .primary h4, .primary h5, .primary h6, .primary li, .primary a,
h1.primary, h2.primary, h3.primary, h4.primary, h5.primary, h6.primary, li.primary, a.primary, p.primary {
	color: #32a709;
}

.secondary, 
.secondary h1, .secondary h2, .secondary h3, .secondary h4, .secondary h5, .secondary h6, .secondary li, .secondary a,
h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary, li.secondary, a.secondary, p.secondary {
	color: #daf238;
}

.tertiary, 
.tertiary h1, .tertiary h2, .tertiary h3, .tertiary h4, .tertiary h5, .tertiary h6, .tertiary li, .tertiary a,
h1.tertiary, h2.tertiary, h3.tertiary, h4.tertiary, h5.tertiary, h6.tertiary, li.tertiary, a.tertiary, p.tertiary {
	color: #e4debe;
}

/* background colors */
.bg-white, a.bg-white {background-color: #fff;}
.bg-black, a.bg-black {background-color: #000;}
.bg-primary, a.bg-primary {background-color: #32a709;}
.bg-secondary, a.bg-secondary {background-color: #daf238;}
.bg-tertiary, a.bg-tertiary {background-color: #e4debe;}

/* -- END COLORS -- */


/* -- TYPOGRAPHY -- */

.text-lowercase, 
.text-lowercase h1, .text-lowercase h2, .text-lowercase h3, .text-lowercase h4, .text-lowercase h5, .text-lowercase h6, .text-lowercase li, .text-lowercase a {
	text-transform: lowercase !important;
}

.text-uppercase, 
.text-uppercase h1, .text-uppercase h2, .text-uppercase h3, .text-uppercase h4, .text-uppercase h5, .text-uppercase h6, .text-uppercase li, .text-uppercase a {
	text-transform: uppercase !important;
}

.text-capitalize, 
.text-capitalize h1, .text-capitalize h2, .text-capitalize h3, .text-capitalize h4, .text-capitalize h5, .text-capitalize h6, .text-capitalize li, .text-capitalize a {
	text-transform: capitalize !important;
}

.text-transform-none, 
.text-transform-none h1, .text-transform-none h2, .text-transform-none h3, .text-transform-none h4, .text-transform-none h5, .text-transform-none h6, .text-transform-none li, .text-transform-none a {
	text-transform: none !important;
}

.font-weight-bold, 
.font-weight-bold h1, .font-weight-bold h2, .font-weight-bold h3, .font-weight-bold h4, .font-weight-bold h5, .font-weight-bold h6, .font-weight-bold li, .font-weight-bold a {
	font-weight: 700;
}

.font-weight-normal, 
.font-weight-normal h1, .font-weight-normal h2, .font-weight-normal h3, .font-weight-normal h4, .font-weight-normal h5, .font-weight-normal h6, .font-weight-normal li, .font-weight-normal a {
	font-weight: 400;
}

.font-italic {font-style: italic;}

.text-underline-none, .text-underline-none a {text-decoration: none !important;}

.text-underline, .text-underline a {text-decoration: underline !important;}

.text-nowrap, .text-nowrap a {white-space: nowrap !important;}

.text-wrap-normal, .text-wrap-normal a {white-space: normal !important;}

/* -- END TYPOGRAPHY -- */


/* -- FOOTER -- */

/* - Bottom Bar - */

/* copyright wrapper */
#freshy_copyright {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	font-size: 13px;
	line-height: 1.25em;
}

/* vertical pipe divider */
#freshy_copyright span.copyright_via {
	width: 33.33333%;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 200%;
	background: rgba(255,255,255,0.25);
	vertical-align: middle;
	margin: 10px auto 15px;
	display: block;
}

/* add an FS logo via background */
#freshy_copyright a.copyright_fs {
	display: block;
	width: 68px;
	height: 20px;
	background-image: url("/wp-content/uploads/freshy_logo_WHITE.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-indent: 200%;
	white-space: nowrap;
	overflow: hidden;
	margin: 4px 0 0 0;
	flex-shrink: 0;
	transition: all 0.4s ease-in-out;
}
/* FS logo link hover */
#freshy_copyright a.copyright_fs:hover {
	opacity: 0.8;
}

@media (min-width: 600px) {
	/* make the copyright elements be side by side at wider screens */
	#freshy_copyright {
		flex-direction: row;
	}
	/* change horizontal pipe divider to vertical on wider screens */
	#freshy_copyright span.copyright_via {
		width: 1px;
		height: 20px;
		margin: 0 10px;
	}
}

@media (max-width: 1023px) {
	/* center the copyright stuff when columns are stacked */
	#freshy_copyright {
		justify-content: center;
	}
}

/* -- END FOOTER -- */


/* -- RESPONSIVE -- */

/* do for mobile */
@media screen and (max-width: 767px) {
	/* hide on mobile */
	.hide-mobile {
		display: none;
	}
}

/* do for desktop */
@media screen and (min-width: 768px) {
	/* hide on desktop */
	.hide-desktop {
		display: none;
	}
}

/* -- END RESPONSIVE -- */


/* -- CHECKLIST -- */

.checklist ul {
	margin: 0;
	padding: 0 !important;
	list-style: none;
}

.checklist ul li {
	position: relative;
	padding-left: 30px;
	margin: 0 0 6px !important;
}

.checklist-columns-2 ul li,
.checklist-columns-3 ul li,
.checklist-columns-4 ul li {
	margin-bottom: 30px !important;
}

@media (max-width: 638px) {
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		margin-bottom: 20px !important;
	}
	.checklist-columns-2 ul li:last-child,
	.checklist-columns-3 ul li:last-child,
	.checklist-columns-4 ul li:last-child {
		margin-bottom: 0 !important;
	}
}

/* create columns of list items with this class */
@media (min-width: 639px) {
	.checklist-columns-2 ul::after,
	.checklist-columns-3 ul::after,
	.checklist-columns-4 ul::after {
		content: '';
		clear: both;
		display: table;
	}
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 50%;
		padding-right: 30px;
	}
	.checklist-columns-2 ul li:nth-child(odd),
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd){
		clear: both;	
	}
	.checklist-columns-2-alt > ul,
	.checklist-columns-3-alt > ul,
	.checklist-columns-4-alt > ul {
		column-count: 2;
		column-gap: 20px;
	}
	.checklist-columns-2-alt ul li,
	.checklist-columns-3-alt ul li,
	.checklist-columns-4-alt ul li {
		break-inside: avoid-column;
	}
}
@media (min-width: 1024px) {
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 33.333333%;
	}
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;	
	}
	.checklist-columns-3 ul li:nth-child(3n+1),
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: both;	
	}
	.checklist-columns-3-alt ul,
	.checklist-columns-4-alt ul {
		column-count: 3;
	}
}
@media (min-width: 1199px) {
	.checklist-columns-4 ul li {
		float: left;
		width: 25%;
	}
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;	
	}
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: none;	
	}
	.checklist-columns-4 ul li:nth-child(4n+1) {
		clear: both;	
	}
	.checklist-columns-4-alt ul {
		column-count: 4;
	}
}

.checklist ul li::before {
	font-family: 'ETModules';
	content: '\4e';
	width: 20px;
	margin: 0;
	display: inline-block;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	color: #32a709;
	/* set font size helps make icon sharper */
	font-size: 22px;
	font-weight: normal;
}
.pluslist ul li::before {
	content: '\e050';
}
.externallist ul li::before {
	content: '\e906';	
}

/* -- END CHECKLIST -- */


/* -- GRAVITY FORMS -- */

/* confirmation (success) message */
.gform_confirmation_wrapper .gform_confirmation_message {
	font-size: 1.2rem;
	line-height: 1.5em;
	padding: 2rem;
	background: rgba(90, 90, 90, 0.1);
	text-align: center;
}

/* -- END GRAVITY FORMS -- */


/* -- HELPERS -- */

@media (max-width: 1023px) {
	/* use the "stacked-flex" class on a ROW to make it be flexbox when stacked, to help with adjusting order of stacked columns */
	.stacked-flex {
		display: flex;
		flex-wrap: wrap; 
	}
	/* add the desired class to COLUMNS to designate their order when stacked within a "stacked-flex" ROW */
	.stacked-order-negative-4 {
		order: -4;
	}
	.stacked-order-negative-3 {
		order: -3;
	}
	.stacked-order-negative-2 {
		order: -2;
	}
	.stacked-order-negative-1 {
		order: -1;
	}
	.stacked-order-1 {
		order: 1;
	}
	.stacked-order-2 {
		order: 2;
	}
	.stacked-order-3 {
		order: 3;
	}
	.stacked-order-4 {
		order: 4;
	}
	/* adds margin to former "last" column that otherwise wouldn't have it */
	.stacked-flex:last-child .et_pb_column:last-child {
		margin-bottom: 30px;
	}
}

/* -- END HELPERS -- */
body .w_90 > .e-con-inner {
  width: 90%;
}
/**Search**/


.space-dot {
	padding-left: 24px;
	padding-right: 24px;
}
h1, h2, h3, h4, h5, h6 {
	margin-block-end: 0px !important;
	margin-block-start: 0px !important;
}

.custom_news .elementor-post-info__terms-list-item {
	background: #E6E8F3;
	padding: 10px 16px;
	border-radius: 100px;
	text-transform: uppercase;
	font-weight: 700 !important;
	color: #5769B2 !important;
	margin-bottom: 24px !important;
	display: inline-block !important;
	font-size: 12px !important;
	line-height: 1 !important;
}
.custom_news .elementor-button-text {
	padding-bottom: 10px;
	border-bottom: 3px solid #E6E8F3;
}
.custom_news .elementor-button-text:hover {
	border-bottom: 3px solid #85BD40;
}
.elementor-grid-item .elementor-post__read-more {
	padding-bottom: 10px;
	border-bottom: 3px solid #E6E8F3;
	float: left;
}
.custom_news .elementor-button-text {
	margin-bottom: 30px;
}
.archive .custom_news .elementor-button-text {
	margin-bottom: 0px !important
}
.elementor-grid-item .elementor-post__read-more:hover {
	border-bottom: 3px solid #85BD40;
	color: #85BD40 !important;
}
/* Make all loop items equal height */
.custom_news .e-loop-item {
  display: flex;
}

.custom_news .e-loop-item > .elementor-element {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Push button to bottom */
.custom_news .e-loop-item .elementor-widget-button {
  margin-top: auto;
}
/* Hide required text */
body .gform_required_legend {
  display: none !important;
}
/* Gravity Form Subscribe Style Fix */
body .download_form .gform_wrapper form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

body .download_form .gform_wrapper .gform_body .gform_fields {
    display: flex !important;
    margin: 0;
    padding: 0;
    width: 100%;
}

body .download_form .gform_wrapper .gform_body .gform_fields .gfield {
    flex: 1;
    margin: 0 !important;
}

/* Email Input */
body .download_form .gform_wrapper input[type="email"] {
	width: 100%;
	padding: 16px 24px;
	border: 2px solid #AFA9CF;
	border-right: none;
	border-radius: 100px 0 0 100px;
	font-size: 17px;
	outline: none;
	box-shadow: none;
	color: #25252C;
	height: 49px;
}

/* Placeholder color */
body .download_form .gform_wrapper input[type="email"]::placeholder {
    color: rgba(37, 37, 44, 0.3);
}
body .download_form .gform-body.gform_body {
	margin-right: -10px;
}
body .download_form .gform_footer {
	margin: 0px !important;
	padding: 0px !important;
}

/* Subscribe Button */
body .download_form .gform_wrapper .gform_footer input[type="submit"] {
	background: #2f54eb;
	color: #fff;
	padding: 14px 30px;
	border: 2px solid #2f54eb;
	border-radius: 100px;
	font-weight: bold;
	font-size: 15px;
	cursor: pointer;
	transition: 0.3s;
	margin-left: -8px;
	height: 49px;
	margin-bottom: 0px !important;
}
@media (min-width: 981px) {
	.bg_section {
	  position: relative;
	  z-index: 1;
	}
	.bg_section::before {
	  content: "";
	  position: absolute;
	  top: 50%;
	  left: 0;
	  transform: translateY(-50%);
	  width: 100%;   
	  height: 70%;  
	  background: #FAFAFD;
	  border-radius: 16px;
	  z-index: -1; 
	}
}
/* Hover effect */
body .download_form .gform_wrapper .gform_footer input[type="submit"]:hover {
    background: #85BD40;
    border-color: #85BD40;
}
@media (min-width: 981px) {
	.elementor-nav-menu li {
		margin-right: 48px;
	}
	.elementor-nav-menu li:last-child {
		margin-right: 0px;
	}
}
.blurb_box .clr_txt{
	color:#FF6719 !important;
}
.bg_txt {
	background: #E6E8F3 !important;
	color: #5769B2;
	padding: 6px 15px !important;
	border-radius: 100px;
	text-transform: uppercase;
	font-weight: 700 !important;
}
.news_title a {
	font-weight: 700 !important;
}
#home_news .elementor-heading-title {
	padding-bottom: 30px;
}
body .article_title a{
	font-weight:700 !important;
}
body .home_hero .swiper-pagination{
    position: absolute;
    left: 82px;
    bottom: 90.26px !important;
    height: fit-content;
    width: fit-content;
}
body .home_hero .elementor-main-swiper{
    position: relative !important;
    padding-bottom: 0 !important;
	width: 100% !important;
}
@media (max-width: 1366px){
    body .home_hero .swiper-pagination{
        left: 44px;
        bottom: 74.28px !important;
    }
}
@media (max-width: 980px){
    body .home_hero .swiper-pagination{
        left: 24px;
        bottom: 54.28px !important;
    }
}
@media (max-width: 767px){
    body .home_hero .swiper-pagination{
        bottom: calc(5% - 1.5%) !important;
        left: 50%;
        transform: translateX(-50%);
    }
}
/**Search Form**/
body .search_form input.search-submit{
    border: none !important;
}
body .search_form .searchwp-form-input-container .swp-input{
    border-radius: 100px;
}
/**checklist**/
body .checklist ul li:before{
    content: '';
    background: url('/wp-content/uploads/check-list.png');
    height: 20px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
	top: 3px;
}
body .big_checklist_w_bg ul li{
    background: #FAFAFD;
    border-radius: 16px;
    margin-bottom: 10px !important;
    padding: 15px !important;
    padding-left: calc(15px + 25px) !important;
}
body .big_checklist_w_bg ul li:before{
	left: 15px;
    top: 20px;
}
/**Post slider**/
body .post_slidr_excerpt p {
    margin-bottom: 0;
}
/**Search Result**/
body .search_result .elementor-post__text .elementor-post__title{
    padding-bottom: 10px;
}

.elementor-pagination {
	margin-top: 20px !important;
}
.sci_publications .elementor-heading-title{
	margin-bottom: 15px !important;
}
.sci_publications .elementor-icon-list-text{
	margin-bottom: 15px !important;
}
.custom_news .elementor-element {
	margin: 0px !important;
}

body .custom_news .elementor-heading-title {
	padding-bottom: 55px !important;
}
body .news_section .elementor-heading-title {
	padding-bottom: 15px !important;
}
body .news_section .elementor-widget-post-info {
	padding-bottom: 15px !important;
}
.custom_news .elementor-button-text {
	margin-left: 5px;
}

body .news_section .elementor-button-text {
	margin-left: 0px;
}
body .news_section .elementor-widget-post-info {
	padding-bottom: 15px !important;
}
body .news_section .elementor-post-info__terms-list-item {
	margin-bottom: 10px !important;
}
body .news_section .e-loop__load-more  .elementor-button-text {
	padding-bottom: 0px;
	border-bottom: 0px solid #E6E8F3;
}
body #news-id .elementor-button-text {
	margin-bottom: 0px !important;
}
body .news_section .e-loop__load-more  .elementor-button-text:hover {
	padding-bottom: 0px;
	border-bottom: 0px solid #E6E8F3;
}
@media (min-width: 981px) and (max-width: 1260px) {
	.elementor-nav-menu li {
		margin-right: 20px;
	}
	#menu-1-9346621 li a {
		font-size: 14px !important;
	}
	body .home_hero .swiper-pagination {
		left: 60px;
		bottom: 50px !important;
	}
	body .download_form .gform_wrapper .gform_footer input[type="submit"] {
		padding: 14px 22px;
		font-size: 13px;
	}
	.talk_slider .swiper-pagination-bullets::before {
		margin-left: -14px;
	}
	.talk_slider .swiper-pagination-bullets::after {
		margin-right: -14px;
	}
}
body .rm_blog img {
  box-shadow: none !important;
}
@media (max-width: 980px){
	.talk_slider .swiper-pagination-bullets::before {
		margin-left: -10px;
	}
	.talk_slider .swiper-pagination-bullets::after {
		margin-right: -10px;
	}
	#menu-2-9346621 {
		max-width: 90% !important;
		margin: 0 auto !important;
		padding: 16px;
		background: #382986 !important;
		border-radius: 8px;
	}
	 .elementor-nav-menu--dropdown {
		background-color: transparent !important;
	}
	body .release_column.e-flex {
		order: 2;
	}
	.checklist-columns-2 ul li, .checklist-columns-3 ul li, .checklist-columns-4 ul li {
		margin-bottom: 20px !important;
	}
}



@media (max-width: 767px){
	body .download_form .gform_wrapper .gform_footer input[type="submit"] {
		padding: 8px 30px;
		font-size: 13px;
		margin-left: -10px;
		height: 49px;
	}
	body .download_form .gform_wrapper input[type="email"] {
		padding: 14px 20px;
		font-size: 15px;
	}
	.space-dot {
		padding-left: 10px;
		padding-right: 10px;
	}
	.talk_slider .swiper-pagination-bullets::before {
		margin-left: -5px;
	}
	.talk_slider .swiper-pagination-bullets::after {
		margin-right: -5px;
	}
	#news_btn {
		position: relative;
		text-align: center;
		margin: 0 auto !important;
	}
	body .custom_news .elementor-heading-title {
		padding-bottom: 25px !important;
	}
	#homer_slider .elementor-testimonial {
		margin-bottom: 25px !important;
	}
	.checklist-columns-2 ul li, .checklist-columns-3 ul li, .checklist-columns-4 ul li {
		margin-bottom: 15px !important;
	}
	.custom_news .elementor-widget.elementor-widget-button {
		margin: 0 auto !important;
	}
}
body .footer_txt a{
	font-weight:600 !important;
}
body .elementor-post-info__item--type-date {
	font-size: 15px !important;
	text-transform: uppercase;
}
@media (min-width: 981px){
	.elementor-nav-menu--dropdown {
		margin-top: 15px !important; 
	}
	.elementor-nav-menu--dropdown {
		width: 100% !important;
		left: 0 !important;
		right: 0 !important;
		border-radius: 0 !important; 
	}
	.elementor-nav-menu--dropdown  .elementor-sub-item:hover {
	  background-color: #FAFAFD !important;
	}
	body  .elementor-nav-menu--dropdown a {
		color: #2B2E3B !important;
		fill: #FFFFFF;
	}
}
@media (max-width: 980px){
	.elementor-nav-menu--dropdown .elementor-item:hover{
		background:transparent !important;
	}
	.elementor-nav-menu--dropdown .elementor-item.elementor-item-active{
		background:transparent !important;
	}
	.elementor-element.fullwidth_column {
	width: 100% !important;
}
}
/* Hide Elementor default arrows */


#featured-article .post_slidr_excerpt {
	overflow: hidden !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 4 !important;
	-webkit-box-orient: vertical !important;
	margin-bottom: 32px !important;
	max-height: 6em;
}
#featured-article .elementor-heading-title {
	margin-bottom:0px !important;
}
#custom_news img {
	box-shadow: none !important;
}


.home_news .elementor-widget-image img {
	margin-bottom: 24px;
}
.article_row .talk_slider .elementor-widget-image{
	box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.08) !important;
}
body .news_container {
	box-shadow: 0 0 20px rgba(0,0,0,0.25) !important;
	transition: box-shadow 0.3s ease;
}
.publication-name.no-logo {
	margin-bottom: 15px;
}

@media (max-width: 767px){
	.custom_news .elementor-button-text {
		margin-left:0px;
	}
	.custom_news .elementor-button-text {
		margin-bottom: 0px;
	}
	#news_btn {
		left: 0 !important;
	}
}

/* External link button style */
body .e-con-inner .external-link a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background 0.3s ease !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	line-height: 1em !important;
	letter-spacing: 0px !important;
	color: #FFFFFF !important;
	padding: 16px 18px 15px 18px !important;
	background-color: #3C57DD;
	border-radius: 100px !important;
}

/* Hover effect */
body .e-con-inner .external-link a:hover {
  background: #85BD40 !important;
}
body #inner_banner .search_title {
	max-width: 1000px !important;
	margin: 0 auto !important;
}
@media (min-width:981px) and (max-width:1220px) {
	body .elementor-location-header .e-con-inner #menu-1-9346621 .external-link a {
		font-size: 11px !important;
		padding: 13px 15px 13px 15px !important;
	}
	 body #inner_banner .search_title h1 {
		font-size: 35px !important;
	}
	body #inner_banner .search_title {
		max-width: 700px !important;
	}
	.elementor-nav-menu li {
		margin-right: 4px;
	}
}
@media (min-width:1221px) and (max-width:1366px) {
	body .elementor-location-header .e-con-inner #menu-1-9346621 .external-link a {
		font-size: 13px !important;
		padding: 13px 15px 13px 15px !important;
	}
	 body #inner_banner .search_title h1 {
		font-size: 35px !important;
	}
	body #inner_banner .search_title {
		max-width: 700px !important;
	}
	.elementor-nav-menu li {
		margin-right: 10px;
	}
}
.year_box .elementor-image-box-title {
	margin-bottom: 15px !important;
}
@media (max-width: 980px){
	 body #inner_banner .search_title h1 {
		font-size: 30px !important;
	}
	body #inner_banner .search_title {
		max-width: 600px !important;
	}
	body .e-con-inner .external-link a {
		font-size: 12px !important;
		padding: 12px 15px 11px 15px !important;
	}
}

@media (max-width: 767px){
	 body #inner_banner .search_title h1 {
		font-size: 25px !important;
	}
}
@media (min-width: 981px){
	body .elementor-sub-item.elementor-item-active {
	  background-color: transparent !important;
	}
}
.page-id-42 {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	height: 100%;
	margin: 0;
}
.page-id-42 .elementor-location-footer {
	margin-top: 0;
	margin-top: auto;
}
.search_result .elementor-post {
	padding: 20px !important;
	box-shadow: 0 0 20px rgba(0,0,0,0.25) !important;
	transition: box-shadow 0.3s ease;
}
/* -- RECAPTCHA BADGE -- */
.grecaptcha-badge {
	width: 70px !important;
	overflow: hidden !important;
	transition: all 0.3s ease !important;
	left: 4px !important;
	z-index: 9;
}
.grecaptcha-badge:hover {
	width: 256px !important;
}