/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.0.0
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 */


/* HOME PAGE CUSTOM CSS */


body.home  #siteHeader {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.MainHeroSection , .sectionSticky {
	position:sticky;
	top:0px;
}

.sectionSticky.moretop{
	top:-10%;
}

.MainHeroSection .hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/wp-content/uploads/2025/10/Hero-Overlay-left-side.png')
  no-repeat left center;
  background-size: auto;
  z-index: 2;   
  pointer-events: none;
}


.MainHeroSection {
	overflow: hidden;
}

.intro-overlay img {
	transition: all 1s ease;
}

.hero-main {
  position: relative;
  z-index: 5;
  opacity: 1;
  transition: opacity 1s ease;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: opacity 1s ease;
}

.intro-overlay {
	position: absolute;
  	inset: 0;
	z-index: 10;
}

.hero-main video {
  filter: blur(10px);
  transition: filter 1.5s ease;
}

.hero-main.active video {
  filter: blur(0);
}

.hoverBtn.white a{
	--line-color: #fff;
}

.hoverBtn.green a{
	--line-color:#1f3738;
}


.hoverBtn.white a:hover{
  background: transparent !important;
  color: #fff !important;
}

.hoverBtn.white a:hover span {
	color: #fff !important;
}

.hoverBtn.green a:hover{
  background: transparent !important;
  color: #1f3738 !important;
}

.hoverBtn.green a:hover span {
	color: #1f3738 !important;
}

.hoverBtn.green.whiteHover a:hover {
	 color: #fff !important;
}

.hoverBtn.green.whiteHover a:hover span {
	 color: #fff !important;
}

.hoverBtn a{
  
  --line-height: 2px;
  --grow-dur: 420ms;
  --slide-dur: 420ms;

  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  transition: background 220ms ease, color 220ms ease;
}

.hoverBtn a::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: var(--line-height);
  width: 20%;
  background: var(--line-color);
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 180ms ease;
}


.hoverBtn a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: var(--line-height);
  width: 100%;
  background: var(--line-color);
  z-index: 2;
  pointer-events: none;
  opacity: 0;  
  transform-origin: left;
  transform: scaleX(.2);
}

.hoverBtn a:hover::before{
  opacity: 0;
  transition-delay: 0s;
}

.hoverBtn a:hover::after{
  opacity: 1;
  animation: btn-grow var(--grow-dur) cubic-bezier(.2,.9,.2,1) forwards;
}

.hoverBtn.green.whiteHover a:hover::after{
	background: #fff;
}


.hoverBtn a:not(:hover)::after{
  animation: btn-slideout var(--slide-dur) ease forwards;
}

.hoverBtn a:not(:hover)::before{
  transition-delay: calc(var(--slide-dur));
}

@keyframes btn-grow{
  from { transform: scaleX(.2); }
  to   { transform: scaleX(1);   }
}

@keyframes btn-slideout{
  from { transform: scaleX(1); opacity: 1; }
  to   { transform: translateX(100%) scaleX(.2); opacity: 0; }
}


.myImageCarousel .swiper-slide figure {
	height: 600px;
}

.myImageCarousel .swiper-slide img {
	height: 600px;
  	object-fit: cover;
  	object-position: center center;
	width: 100%;
}

.myImageCarousel .elementor-swiper-button {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #46A390;
  border-radius: 50px 50px 50px 50px;
  padding: 15px 15px 15px 15px;
  top:calc(100% + 50px) !important;
}

.myImageCarousel .elementor-swiper-button-prev {
	left:calc(100% + -125px) !important;
}

.myImageCarousel .elementor-swiper-button-next {
	right:0px !important;
}

.homerOverlaySection::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('/wp-content/uploads/2025/10/Group-49.png')
  no-repeat right center;
  background-size: auto; 
  z-index: 2;   
  pointer-events: none;
}

.scaleBGCard{
	transition: transform 0.6s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.scaleBGCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: -1;
}

.scaleBGCard:hover::after {
  transform: scale(1.1);
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in {
	border-radius: 12px;
	background: transparent !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_post_details {
	opacity: 1 !important;
    visibility: visible !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_post_overlay {
	background: transparent !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in:hover .tb_hs_post_details {
	animation:none;
	transform:none;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_contant_wrapper {
	height: auto !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_author_wrapper {
	top: 0 !important;
	bottom: unset !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_contant_wrapper {
	bottom: 0 !important;
	top: unset !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_contant_wrapper , 
.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_author_wrapper {
	padding: 24px !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_authorname {
	color: #fff;
  font-family: "lucida" , sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.tb_post_modal_author_usrname {
		color: #000;
  font-family: "lucida" , sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_username , 
.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_time{
	font-family: "lucida" , sans-serif;
  color: #FFF;
  font-size: 12px;
  line-height: 16px;
}

.tb_post_modal_author_handlename,
.tb_post_modal_post_time {
		font-family: "lucida" , sans-serif;
  color: #000;
  font-size: 12px;
  line-height: 16px;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_hs_seprator{
	background: #fff !important;
}

.tb_post_modal_seprator_dot {
	background: #000 !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in  .tb_hs_social_ .tb-linkedin{
	color: #fff;
  font-size: 32px;
}

.tb_post_modal_social_wrapper .tb-linkedin {
	font-size: 32px;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__slide .tb_hs_post_in .tb_content_text {
	color: #fff;
  font-family: "georgia" , sans-serif;
  font-size: 18px;
}

.tb_post_modal_content {
		color: #000 !important;
  font-family: "georgia" , sans-serif !important;
  font-size: 16px !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .tb_hs_arrow {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #46A390;
  border-radius: 50px 50px 50px 50px;
  padding: 15px 15px 15px 15px;
  top:calc(0% + -95px) !important;
  box-shadow: none;
  background: transparent;
  height: 60px;
  width: 60px;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__arrow--prev {
	left:calc(100% + -135px) !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__arrow--prev::before,
.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__arrow--next::before {
  content: none !important;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__arrow--prev,
.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__arrow--next{
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__arrow--prev {
	background-image: url('/wp-content/uploads/2025/10/IC-Left-Arrow.svg');
}

.linkedInPosts .tagembed-widget .tb_hs_post_slider .splide__arrow--next {
	background-image: url('/wp-content/uploads/2025/10/IC-Right-Arrow.svg');
}

.tb_post_modal_post_report_media_btn__ {
	background: transparent !important;
	color: #000 !important;
}

.tb_post_modal_share_button {
	color: #000 !important;
}


/* HOME PAGE CUSTOM CSS */

@media (max-width: 1363px) {
	.hideBrHomeCard {
		display: none;
	}
}

@media (min-width: 767px) {
	.flexForAlignement {
		display: flex;
  		height: 100%;
  		align-items: center;
	}
}

@media (max-width: 767px) {
	.myImageCarousel .swiper-slide figure {
		height: 350px;
	}

	.myImageCarousel .swiper-slide img {
		height: 350px;
		object-fit: cover;
		object-position: center center;
		width: 100%;
	}
	
	.linkedInPosts .tagembed-widget .tb_hs_post_slider .tb_hs_arrow {
		top: calc(0% + -70px) !important;
	}
	
	.sectionSticky.moretop{
		top:-50%;
	}
	
	.hideBrMobile {
		display: none;
	}
}