/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/


/*temporary fix for flickering/flashing post archive feature image when set image ratio*/
.elementor-post__thumbnail > img{
	
	visibility:hidden;
	
}

.wpml-ls-statics-footer {
    display: none;
}

/*Edit elementor's fade in up animation movement*/
@keyframes fadeInUpDkR {
    from {
        opacity: 0;
        transform: translate3d(0,50px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

body .fadeInUp {
    animation-name: fadeInUpDkR;
}

/*Custom slider content styling and animation on hover*/
.dkr-slider-hover-effect:hover .swiper-slide-inner{
    background: #595959A1;
    transition: 0.5s ease;
}

.dkr-slider-hover-effect .swiper-slide-contents {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
    transition: all 0.3s ease;
}

body:not(.elementor-editor-active) .dkr-slider-hover-effect .swiper-slide-contents {
	transform: translateY(100%);
}

body:not(.elementor-editor-active) .dkr-slider-hover-effect.hover-dkr .swiper-slide-contents{
		transform: translateY(0);

}

/*fixed section effect*/
body:not(.elementor-editor-active) .dkr-fixed-section{
    position: fixed;
    top: 8%;
    width: 100%;
    z-index: -10;
}

body:not(.elementor-editor-active) .dkr-section-over-fixed{
	margin-top: 75vh;
}


/*2026 header and search bar styling*/

.rd-header-liquid-glass{

  background:
    radial-gradient(160% 170% at 14% 10%,
      rgba(242,242,242,.38) 0%,
      rgba(242,242,242,.18) 32%,
      rgba(242,242,242,0) 68%),
    radial-gradient(140% 170% at 90% 92%,
      rgba(242,242,242,.34) 0%,
      rgba(242,242,242,.16) 30%,
      rgba(242,242,242,0) 66%),
    linear-gradient(135deg,
      rgba(242,242,242,.46),
      rgba(242,242,242,.24));

  -webkit-backdrop-filter: blur(18px) saturate(160%) brightness(1.06);
  backdrop-filter: blur(18px) saturate(160%) brightness(1.06);

  transform: translateZ(0);
  
  transition: width 0.35s ease;
}

.rd-header-liquid-glass.elementor-sticky--active,
.rd-header-search-form.elementor-sticky--active{
    width: 60vw!important;
    inset-inline-start: inherit!important;
    top: 0.5vw!important;
}

.rd-header-liquid-glass .rd-search-button{
	display: none;
}

.rd-header-liquid-glass.elementor-sticky--active .rd-search-button{
	display: block;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .rd-header-liquid-glass{
    background: rgba(242,242,242,.92);
  }
}

.rd-26-header{

  background:
    radial-gradient(160% 170% at 14% 10%,
      rgba(242,242,242,.38) 0%,
      rgba(242,242,242,.18) 32%,
      rgba(242,242,242,0) 68%),
    radial-gradient(140% 170% at 90% 92%,
      rgba(242,242,242,.34) 0%,
      rgba(242,242,242,.16) 30%,
      rgba(242,242,242,0) 66%),
    linear-gradient(135deg,
      rgba(242,242,242,.46),
      rgba(242,242,242,.24));
}


.rd-26-header,
.rd-search-container{
    position: absolute;
    top: 0;
}

.rd-search-result-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

/*Search bar function in 2026 header*/

.rd-search-container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.rd-search-open .rd-search-container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.rd-search-lock,
body.rd-search-lock,
html.rd-ui-lock,
body.rd-ui-lock{
  overflow: hidden;
}

main {
  transition: filter 0.25s ease;
}

body.rd-search-open main,
body.rd-mobile-menu-open main {
  filter: blur(3px) saturate(106%) brightness(1.01);
}

/*TABLET*/
@media screen and (max-width: 1023px) {
	.rd-header-liquid-glass.elementor-sticky--active,
	.rd-header-search-form.elementor-sticky--active{
		width: 80vw!important;
	}
}

/*MOBILE*/
@media screen and (max-width: 767px) {
	.rd-header-liquid-glass.elementor-sticky--active,
	.rd-header-search-form.elementor-sticky--active,
	.rd-header-mobile-menu.elementor-sticky--active{
		top: 2vw!important;
	}
}

/*mobile menu styling 2026*/
.rd-menu-mobile-container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.rd-mobile-menu-open .rd-menu-mobile-container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.rd-header-mobile-menu.elementor-sticky--active{
	width: 80vw!important;
	left: 10vw !important;
}

