/* 
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
*/

.sentinel_form form .metform-submit-btn{
	background-image: linear-gradient(270deg, #00C6B4 0%, #0010A7 60%);
	font-family: "Acumin Pro", Sans-serif !important;
}
.sentinel_form form .elementor-widget-mf-button{
	border-radius: 32px !important;
    overflow: hidden;
}
.sentinel_form .mf-input-label{
	font-family: "Acumin Pro", Sans-serif !important;
}
.sentinel_form .mf-input{
	font-family: "Acumin Pro", Sans-serif !important;
}
.post-grid_sec .post-items{
	justify-content: center;
}
.post-grid_sec .elementskit-entry-thumb {
	height: 260px;
}
@media(max-width: 768px){
	.post-grid_sec .elementskit-entry-thumb {
		height: 200px;
	}
}
@media(min-width: 768px){
	.top_header_menu_custom .elementskit-navbar-nav .menu-item:last-child {
	  display: none;
	}
}
.post-grid_sec .elementskit-entry-thumb img{
	display: block !important;
	height: 100% !important;
	object-fit: cover !important; 
}

/* image popup  */
.imgapopup_wrapper {
    cursor: pointer;
}
body.imgapopup_no-scroll {
    overflow: hidden;
    height: 100vh;
}
.imgapopup_content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.imgapopup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.imgapopup_overlay.active {
    opacity: 1;
    visibility: visible;
}

.imgapopup_overlay .imgapopup_image {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.imgapopup_overlay.active .imgapopup_image {
    transform: scale(1);
    opacity: 1;
}

.imgapopup_close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: opacity 0.3s ease;
}
@media(max-width: 768px){
	.imgapopup_overlay .imgapopup_image {
		max-width: 100%;
    	max-height: 100%;
	}
}

/* team shortcode css  */
.team_wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}
.team_card {
	flex: 0 0 calc((100% - 72px) / 4);
	border: 1px solid #BEC9CA;
	padding: 20px;
	text-align: center;
	position: relative;
	cursor: pointer;
	border-radius: 28px;
}
.team_card .team_clickable{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 32px
}
.team_image_wrapper {
	position: relative;
	width: 100%;
	height: 240px;
	border-radius: 8px;
	overflow: hidden;
}
.team_image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 8px !important;
	transition: transform 0.3s ease;
}

.team_image_overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	border-radius: 8px;
	transition: opacity 0.3s ease;
	background-image: linear-gradient(180deg, var(--e-global-color-4e87b42) 0%, var(--e-global-color-870ef80) 100%);
}

.team_image_wrapper:hover .team_image_overlay {
	opacity: 0.5;
}

.team_image_wrapper:hover .team_image {
	transform: scale(1.05);
}
.team_title {
	margin: 0 !important;
	font-family: "Montserrat", Sans-serif;
	font-size: 24px !important;
	font-weight: 500 !important;
	text-transform: none !important;
	line-height: 1.2em !important;
	letter-spacing: -0.8px !important;
}
.team_role {
	margin: 0 !important;
	font-family: "Montserrat", Sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #0084F7;		
}

/* Popup */
.team_popup_overlay {
	display: none;
	position: fixed;
	top: 0; left: 0;
	overflow: auto;
	padding: 50px 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	animation: team_fadein 0.3s ease-in-out;
}

.team_popup_content {
	background: #fff;
	padding: 25px;
	border-radius: 10px;
	width: 90%;
	max-width: 623px;
	position: relative;
	animation: team_slideup 0.4s ease;
}
.team_popup_close img{
	height: 32px;
	width: 32px;
	object-fit: contain;
	object-position: center;
}
.team_popup_close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none !important;
	padding: 0 !important; 
	border: none;
	cursor: pointer;
}

.team_popup_title {
	margin: 0 !important;
	font-family: "Montserrat", Sans-serif;
	font-size: 24px;
	font-weight: 500;
	text-transform: none;
	line-height: 32px;
	letter-spacing: -1.2%;
	text-align: left;
}
.team_popup_text p{
	font-family: "Acumin Pro", Sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-transform: none;
	line-height: 20px;
	letter-spacing: 0;	
	text-align: justify;
}
.team_popup_role {
	margin: 0 !important;
	font-family: "Montserrat", Sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	line-height: 24px;
	text-align: left;
	letter-spacing: 0;
}

@media(max-width: 768px){
	.team_popup_content{
		height: 650px;
		overflow: scroll;
	}	
}

@keyframes team_fadein {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes team_slideup {
	from { transform: translateY(40px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}
			
@media(max-width: 768px){
	.team_wrapper{
		flex-direction: column !important;
	}
	.team_card{
		flex: 1 !important;
	}
}



/* single news css  */

/* Hero section */
.singlepost_hero {
    background-size: cover;
    background-position: center;
    padding: 156px 20px 100px;
    color: #fff;
    text-align: center;
	margin-top: -110px;
    position: relative;
}
.singlepost_hero::before{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: transparent;
	background-image: linear-gradient(180deg, #02010100 0%, #0084F7 110%);
}
.singlepost_featured_image{
	height: 450px;
}
.singlepost_hero_title{
	font-family: 'Montserrat';
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: -1.3px;
	margin: 0;
	color: #fff;
}
.singlepost_hero_overlay {
	max-width: 1280px;
	margin: 0 auto;
	z-index: 5;
	position: relative;
}
.singlepost_hero_title {
    font-size: 2.5rem;
    margin: 0;
}

/* Layout */
.singlepost_content_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1280px;
    margin: 100px auto;
    padding: 0 20px;
}
.singlepost_left_column {
    flex: 1 1 65%;
}
.singlepost_right_column {
    flex: 1 1 30%;
}

/* Featured image */
.singlepost_featured_image img {
    width: 100%;
    height: 100%;
	object-fit: cover;
	object-position: center;
    display: block;
    border-radius: 12px;
}

/* Content */
.singlepost_main_content {
    margin-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.608);
}
.singlepost_main_content p{
	font-family: "Acumin Pro", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}
.singlepost_related_title{
	font-family: 'Montserrat';
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: -0.8px;
	margin-bottom: 20px;
	margin-top: 0;
}

/* Share section */
.singlepost_share_section {
    margin-top: 10px;
	display: flex;
	justify-content: end;
	gap: 15px;
	align-items: center;
}
.singlepost_share_section span {
    font-weight: bold;
    margin-right: 10px;
}
.singlepost_share_section a {
    text-decoration: none;
    color: #0073aa;
}
.singlepost_share_section a img{
	height: 20px;
	width: 20px;
	object-fit: cover;
	object-position: center;
}

/* Related posts */
.singlepost_related_container {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 6px;
}
.singlepost_related_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.singlepost_related_item {
    display: flex;
    gap: 10px;
	width: 100%;
}
.singlepost_related_info{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.singlepost_related_item a{
    display: flex;
    gap: 10px;
	text-decoration: none;
}
.singlepost_related_info .singlepost_related_info_title{
	font-family: "Acumin Pro", Sans-serif;
	color: black;
    font-size: 16px;
	letter-spacing: 0.2px;
    font-weight: 400;
    line-height: 1.5em;
}
.singlepost_related_item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}
.singlepost_related_info h3 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}
.singlepost_related_date {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .singlepost_content_wrapper {
        flex-direction: column;
		margin: 40px auto;
    }
    .singlepost_left_column,
    .singlepost_right_column {
        flex: 1 1 100%;
    }
	.singlepost_related_item img {
		height: 50px;
		width: 50px;
	}
	.singlepost_hero_title{
		font-size: 40px;
		line-height: 1.1em;
		letter-spacing: -1.3px;
	}
}
