/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1768918188
Updated: 2026-01-20 14:09:48

*/








body.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}


.elementor-element.elementor-element-6c3f81c.elementor-widget.elementor-widget-text-editor p {
    margin: 0;
}
 .home-hain-heading h1{
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000 !important;
}

 .home-hain-heading{
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}


.home-hain-heading-2 .home-hain-heading p {
    text-shadow: 0 0 black;
}
.home-hain-heading-2 .home-hain-heading {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}





@media only screen and (max-width: 767px) {

	.elementor-menu-toggle {
    position: relative;
}

nav.elementor-nav-menu--dropdown.elementor-nav-menu__container {
/*     position: fixed;
    top: 0px;
    z-index: 999;
    left: 0px;
    right: 0;
	 */
	height:100vh;
	overflow:hidden;

}
	
}



@media only screen and (min-width: 768px) and (max-width: 1024px) {

	.elementor-element.elementor-element-217c86a.e-con-full.e-flex.e-con.e-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
	
	.elementor-element.elementor-element-bc1614b.e-con-full.elementor-hidden-mobile.e-flex.e-con.e-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}



}

	@media only screen and ( max-width:767px ){
  .contact-text h4{
    font-size: 18px;
  }
	
	.contact-text p{
    font-size: 16px;
  }
		
	.contact-text p a{
    font-size: 16px;
  }
		.elementor-element.elementor-element-dcdf926.e-con-full.e-flex.e-con.e-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
}



.menus-effect {
  font-weight: 600;
}

@supports (-webkit-touch-callout: none) {
  .menus-effect {
    font-weight: 500; /* iOS Safari */
  }
}

.ham-active{
	overflow:hidden;
}





























/* ==================== TEAM SECTION STYLING ==================== */
/* ===========================
   TEAM SECTION
=========================== */

.acf-team-section{
    padding:80px 20px;
    background:#f9f9f9;
}

.team-grid{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   TEAM CARD
=========================== */

.team-card{
    width:420px;
    background:#fff;
    padding:45px 30px;
    border-radius:28px;
    text-align:center;
    cursor:pointer;
    transition:.45s ease;
    border:1px solid rgba(0,0,0,.05);

    box-shadow:
    0 10px 30px rgba(0,0,0,.05),
    0 2px 8px rgba(0,0,0,.03);
}

.team-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.10),
    0 5px 15px rgba(0,0,0,.05);
}

/* ===========================
   IMAGE
=========================== */

.team-image{
    width:220px;
    height:220px;
    margin:auto;
    position:relative;
    border-radius:50%;
    overflow:hidden;
    padding:8px;
}

.team-image::before{
    content:"";
    position:absolute;
    inset:-10px;
    border:2px solid rgba(19,197,194,.35);
    border-radius:50%;
}

.team-image img {
    width: 100%;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover;
    transition: transform .5s ease;
}

.team-card:hover .team-image img{
    transform:scale(1.06);
}

/* ===========================
   TEXT
=========================== */

.team-card h3{
    font-size:34px;
    font-weight:600;
    margin-top:30px;
    margin-bottom:8px;
    color:#1b2a3d;
}

.team-card p{
    font-size:15px;
    font-weight:600;
    color:#13c5c2;
    text-transform:uppercase;
    letter-spacing:1px;
}

/* ===========================
   POPUP
=========================== */

.team-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    z-index:99999;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.popup-content{
    width:100%;
    max-width:1000px;
    background:#fff;
    padding:50px;
    border-radius:30px;
    position:relative;
    max-height:90vh;
    overflow-y:auto;

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

.popup-close{
    position:absolute;
    top:20px;
    right:25px;
    font-size:34px;
    cursor:pointer;
    transition:.3s;
}

.popup-close:hover{
    transform:rotate(90deg);
}

.popup-top-block{
    display:flex;
    align-items:center;
    gap:35px;
    padding-bottom:25px;
    border-bottom:1px solid #eee;
}

.popup-image{
    width:180px;
    height:180px;
    min-width:180px;
    border-radius:50%!important;
    background:#13c5c2;
    padding:8px;
    object-fit:cover;
}

.popup-name{
    font-size:42px!important;
    color:#1b2a3d;
    margin-bottom:8px;
}

.popup-title{
    color:#13c5c2;
    font-size:18px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.popup-bio{
    margin-top:25px;
    color:#000;
    line-height:1.9;
    font-size:16px;
}
.open-team-popup a {
    cursor: pointer;
}


.team-hide-block .team-grid {
    display: none;
}
/* ===========================
   TABLET
=========================== */

@media(max-width:991px){

.team-card{
    width:100%;
    max-width:450px;
}

.popup-content{
    padding:35px;
}

.popup-name{
    font-size:32px!important;
}

.popup-image{
    width:150px;
    height:150px;
}

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:767px){

.team-grid{
    gap:30px;
}

.team-card{
    width:100%;
    padding:30px 20px;
}

.team-image{
    width:170px;
    height:170px;
}

.team-card h3{
    font-size:26px;
}

.popup-content{
    padding:25px;
}

.popup-top-block{
    flex-direction:column;
    text-align:center;
}

.popup-image{
    width:130px;
    height:130px;
}

.popup-name{
    font-size:26px!important;
}

.popup-title{
    font-size:15px;
}

.popup-bio{
    font-size:14px;
    line-height:1.7;
}
.popup-bio{
    
}
}