/*
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.
Tags: translation-ready,two-columns,right-sidebar,left-sidebar,footer-widgets,blog,custom-logo,custom-background,custom-menu,rtl-language-support,editor-style,threaded-comments,custom-colors,featured-images,wide-blocks,full-width-template,theme-options,e-commerce
Version: 1.2.3.1712041012
Updated: 2024-04-02 06:56:52

*/



/*footer links color fix*/
footer .widget-area a:where(:not(.button):not(.wp-block-button__link):not(.wp-element-button)) {
	color: white;
} 

/*change region button css**/
.region-selector-btn{
	color: var(--global-palette3);
	font-size:14px;
	text-decoration:none !important;
}
/***************************/

/******Flip cards CSS******/
.merieux-home-flipbox .flipbox {
	border-radius:15px !important;
    height:250px;
    padding: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.merieux-home-flipbox .flipbox_inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.merieux-home-flipbox .front,
.merieux-home-flipbox .back {
    position: absolute;
    width: 100%;
	height:230px;
    display: flex;
    flex-direction: column;
    transition: transform 0.8s ease; /* Smooth sliding effect */
    backface-visibility: hidden;
}

.merieux-home-flipbox .front {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover !important;
    justify-content: center;
    z-index: 1;
}

.merieux-home-flipbox .back {
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateX(-110%); /* Initially positioned outside the flipbox */
    z-index: 2;
}

.merieux-home-flipbox .flipbox:hover .back {
    transform: translateX(0); 
}

/* Flip Cards fix mobile */
.wp-block-group.back .wp-block-group__inner-container{
	width: 100% !important;
	height: 100% !important;
}
.wp-block-group.back .kb-row-layout-wrap,
.wp-block-group.back .wp-block-kadence-column,.wp-block-group.back .kt-inside-inner-col, .wp-block-group.back .kt-row-column-wrap{
	display: flex !important;
	min-height: 100% !important;
	width: 100% !important;
}
/***************************/

/*Header TOP row searchbar*/
.navbar div{     
	display: flex;
	gap:10px;
	flex-direction:row;
	align-items: center;
}

.navbar a {
  color: var(--global-palette3);
	text-decoration: none !important;
	font-size: 14px;
	font-family:var(--global-body-font-family);
}
header #ajaxsearchlite1 .probox .proinput, div.asl_w .probox .proinput {
    width: 150px;
}
/***************************/


/******HEADER third navigation******/
#tertiary-navigation .menu-item--has-toggle a:first-child{
	color:var(--global-palette2);
	border: 2px solid var(--global-palette2);
	border-radius:25px;
}

#tertiary-navigation .sub-menu a{
	color:white !important;
	border:0 !important;
	border-radius:0px !important;
	background-color:var(--global-palette3);
}
#tertiary-navigation .sub-menu a:hover{
	color:white !important;
	border:none !important;
	border-radius:0px !important;
	background-color:var(--global-palette2);
}
/***************************/



/**language switcher fix ****/
.wpml-ls-sidebars-header1.wpml-ls  span{ 
	font-size:14px;
	font-weight:bold;
}
.wpml-ls-sidebars-header1.wpml-ls{
	max-width:180px;
	background:transparent;
}
/***************************/



/***related articles blog ***/
.entry-related-carousel
.entry.content-bg.loop-entry{
	border-radius:15px;
    height:100%;
}
.entry-related-carousel
.entry.content-bg.loop-entry img{
	border-radius:15px 15px 0 0
}

.entry-related-carousel
.entry.content-bg.loop-entry .posted-by{
	display:none;
}

.entry-related-carousel
.entry.content-bg.loop-entry .entry-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/***************************/

/*Single article wrap padding fix*/
.single-post .content-wrap .entry-content-wrap h1.entry-header{ 
    padding-top: 50px;
}