/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

.child-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Glass effect */
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(12.8px);
    -webkit-backdrop-filter: blur(12.8px);

    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000000;
}

.child-popup-overlay.is-visible {
	opacity: 1;
	pointer-events: all;
}

.child-popup-wrap {
	display: grid;
	gap: 1.5rem;
	max-width: 90vw;
	width: 1200px;
	/* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
}

.child-popup {
	display: none;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	padding: 50px 30px 30px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	position: relative;
}

.child-popup.is-visible {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.child-popup__close {
	background: transparent;
    font-size: 22px;
    line-height: 0;
    cursor: pointer;
    padding: 4px 4px 4px 6px;
    position: absolute;
    right: 8px;
    top: 8px;
    border: 1px solid #000000;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.child-popup__content {
	min-height: 120px;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}

.child-popup__item {
	width: calc(25% - 16.5px);
	background: rgba(0, 0, 0, 0.15);
	border-radius: 6px;
	padding: 30px 20px 80px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
	position: relative;
}

.child-popup__item h2 {
	margin: 0;
	font-size: 20px;
	line-height: 26px;
	min-height: 52px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 4px;
}

.child-popup__item p,
.list_sply li {
	margin: 0;
	font-size: 15px;
	line-height: 20px;
	color: #4b5563;
}
.list_sply {
	padding-left: 0px;
	list-style: none;
	margin-top: 10px;
}
.list_sply li {
	position: relative;
	padding-left: 20px;
}
.list_sply li + li {
	margin-top: 9px;
}
.list_sply li::before {
	position: absolute;
	content: '';
	width: 10px;
	height: 1px;
	background-color: #000000;
	left: 0;
	top: 10px;
}

.child-popup__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 35px;
	padding: 8px 20px;
	border-radius: 50px;
	/* background: #2563eb; */
	background: #e30713;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: 0.5s ease;
	position: absolute;
	bottom: 25px;
	left: 0;
	right: 0;
	width: calc(100% - 40px);
    margin: auto;

}

.child-popup__button:hover,
.child-popup__button:focus-visible {
	background: #000000;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
	outline: none;
}

.fusion-page-title-bar {
	position: relative;
	z-index: 1;
}
.fusion-page-title-bar::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: -1;
}
.fusion-page-title-bar-center .fusion-page-title-captions {
	padding-top: 80px;
}
.fusion-breadcrumbs span {
	color: #ffffff;
}
.fusion-breadcrumbs .fusion-breadcrumb-link span {
	color: #e30713 !important;
	font-weight: 700;
}

.page_wrapper {
	padding: 90px 0;
}