.papyrus_drop_v2 {
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    border-radius: 8px; /* Smooth corners */
/* 	padding: 0px 50px; */
}
/* @media and screen(max-width: 1366px){
	.papyrus_drop_v2{
		padding: 0px 40px;
	}
} */
.service_page_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Two columns for the cards */
    gap: 16px;
	width: 100%;
}

.service_page_card {
    display: flex;
    flex-direction: row;
	column-gap: 8px;
    align-items: start;
    border-radius: 8px;
    border: 1px solid #F3F3F3;
    padding: 16px;
    transition: background 0.3s;
    cursor: pointer;
/* 	height: 100%; */
	flex-grow: 1;
}


.service_page_icon_container {
    width: 10%;
    /* height: 40px; */
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
}

.service_page_icon_container > img {
    width: 20px;
    height: 20px !important;
/* 	align-self: start; */

}

.service_page_card_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
	height:90%;
	
}

.service_page_card_title {
    color: var(--e-global-color-neutral_, #303030) !important;
	font-family: Manrope !important;
	font-size: 20px !important;
	font-style: normal !important;
	font-weight: 600 !important;
	line-height: 140% !important; /* 22px */
}

.service_page_card_button {
    color: var(--e-global-color-primary,"#44c0fc"); /* Bright accent color */
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: transparent !important;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
	padding: 0px;
}

.service_page_card_button > img {
    width: 9px; 
    height: 9px !important;
	transform: rotate(-45deg);
}

/* Active card styling */
.service_page_card.active {
    background:  linear-gradient(180deg, #EA5400 0%, #FE9A63 100%); /* Highlight on hover/active */
}
.service_page_card.active .service_page_card_title{
	color: var(--Neutral, #FFF) !important;
}
.service_page_card.active .service_page_card_button{
	color: var(--Neutral, #303030) !important;
}
/* Video Section */
.videoCard_header {
	max-width: 438px;    
	display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
	align-self: start;
}

.videoCard_header > video {
    display: flex;
    width: 100% !important;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    flex-grow: 1;
}
/* Contact Card - square shape */
.contact_card {
    background-color: var(--e-global-color-background, "#184358");
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-evenly;
    background-image: url(/wp-content/uploads/2024/10/map.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    cursor: pointer;
    padding: 16px;
    aspect-ratio: 1;
    border-radius: 8px;
    border: 1px solid var(--e-global-color-accent-1, #F3F3F3);
    width: 296px;
}

.contact_card > div:nth-of-type(1){	
	height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: start;
    row-gap: 76px;
}
.contact_card > div:nth-of-type(1) > img{
	height: auto;
    max-width: 100%;
    border: none;
    border-radius: 50%;
    box-shadow: none;
    padding: 8.5px;
    background-color: #FFFF;
}

.contact_card p{
	font-family: Manrope;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 33.6px */
	color: white;
}

.contact_card button{
    border: none;
    padding: 0px;
    color: var(--Background, #19252A);
    font-family: Manrope;
    font-size: var(--fontsize-body-body-reg, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-body-reg, 24px);
	background: transparent;
	display: flex;
    align-items: center;
    column-gap: 4px;
}

.contact_card button:hover{
    color: var(--Background, #19252A) !important;
	background: transparent !important;
}

@media screen and (max-width: 1366px) {
	.videoCard_header{
		max-width: 480px;
	}
    .contact_card {
/*         display: none; */
    }
}