/**
 * Frontend Styles for Custom Elementor Widgets
 *
 * @package Custom_Elementor_Widgets
 */

.cew-example-widget {
	padding: 20px;
}

.cew-example-title {
	margin: 0 0 15px 0;
}

.cew-example-description {
	line-height: 1.6;
}

/* Why Choose Us Widget */
.cew-why-choose-us {
	display: flex;
	width: 100%;
	position: relative;
	overflow: hidden;
	min-height: 600px;
}

.cew-why-choose-us__left {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #FF6B35;
	padding: 60px 80px;
	z-index: 2;
}

.cew-why-choose-us__left::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	background-color: transparent;
	z-index: -1;
	display: none;
}

.cew-overlay-extend .cew-why-choose-us__left::after {
	display: block;
	top: 0;
	right: -20%;
	width: 100%;
	height: 100%;
	background-color: inherit;
	z-index: 1;
}

.cew-why-choose-us__title {
	margin: 0;
	padding: 0;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1.2;
	color: #FFFFFF;
	font-size: 72px;
}

.cew-why-choose-us__title-line {
	display: block;
	margin-bottom: 20px;
}

.cew-why-choose-us__title-line:last-child {
	margin-bottom: 0;
}

.cew-why-choose-us__right {
	position: relative;
	width: 40%;
	overflow: hidden;
	z-index: 1;
}

.cew-why-choose-us__image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.cew-why-choose-us__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

/* Responsive */
@media (max-width: 1024px) {
	.cew-why-choose-us {
		flex-direction: column;
		min-height: auto;
	}

	.cew-why-choose-us__left {
		width: 100% !important;
		padding: 40px 60px;
	}

	.cew-why-choose-us__left::after {
		display: none;
	}

	.cew-why-choose-us__right {
		width: 100% !important;
		height: 400px;
	}

	.cew-why-choose-us__title {
		font-size: 48px;
	}
}

@media (max-width: 768px) {
	.cew-why-choose-us__left {
		padding: 30px 40px;
	}

	.cew-why-choose-us__right {
		height: 300px;
	}

	.cew-why-choose-us__title {
		font-size: 36px;
	}

	.cew-why-choose-us__title-line {
		margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	.cew-why-choose-us__left {
		padding: 20px 30px;
	}

	.cew-why-choose-us__title {
		font-size: 28px;
	}

	.cew-why-choose-us__title-line {
		margin-bottom: 10px;
	}
}

/* Features List Widget */
.cew-features-list {
	width: 100%;
	background-color: #FFFFFF;
}

.cew-features-list__item {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	position: relative;
	margin-bottom: 40px;
}

.cew-features-list__item:last-child {
	margin-bottom: 0;
}

.cew-features-list__number {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: 700;
	text-align: center;
	border: 3px solid #FF6B35;
	border-radius: 50%;
	background-color: transparent;
	color: #FF6B35;
	font-size: 80px;
	line-height: 1;
	width: 120px;
	height: 120px;
}

.cew-features-list__item:nth-child(2) .cew-features-list__number {
	margin-top: 20px;
}

.cew-features-list__item:nth-child(3) .cew-features-list__number {
	margin-top: 40px;
}

.cew-features-list__item:nth-child(4) .cew-features-list__number {
	margin-top: 60px;
}

.cew-features-list__item:nth-child(n+5) .cew-features-list__number {
	margin-top: 80px;
}

.cew-features-list__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 10px;
}

.cew-features-list__title {
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.3;
	color: #000000;
	font-size: 24px;
}

.cew-features-list__description {
	margin: 0;
	padding: 0;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-size: 16px;
	font-weight: 400;
	color: #000000;
}

.cew-features-list__line {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 200px;
	height: 2px;
	background-color: #FF6B35;
	z-index: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.cew-features-list__number {
		width: 100px;
		height: 100px;
		font-size: 60px;
	}

	.cew-features-list__title {
		font-size: 20px;
	}

	.cew-features-list__description {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.cew-features-list__item {
		gap: 20px;
		margin-bottom: 30px;
	}

	.cew-features-list__number {
		width: 80px;
		height: 80px;
		font-size: 50px;
	}

	.cew-features-list__item:nth-child(2) .cew-features-list__number,
	.cew-features-list__item:nth-child(3) .cew-features-list__number,
	.cew-features-list__item:nth-child(4) .cew-features-list__number,
	.cew-features-list__item:nth-child(n+5) .cew-features-list__number {
		margin-top: 0;
	}

	.cew-features-list__title {
		font-size: 18px;
	}

	.cew-features-list__description {
		font-size: 13px;
	}

	.cew-features-list__line {
		width: 100px;
	}
}

@media (max-width: 480px) {
	.cew-features-list__item {
		gap: 15px;
		margin-bottom: 25px;
	}

	.cew-features-list__number {
		width: 60px;
		height: 60px;
		font-size: 40px;
	}

	.cew-features-list__title {
		font-size: 16px;
	}

	.cew-features-list__description {
		font-size: 12px;
	}

	.cew-features-list__line {
		width: 80px;
		height: 1px;
	}
}

/* Team Banner Widget */
.cew-team-banner {
	position: relative;
	width: 100%;
	min-height: 600px;
	overflow: hidden;
}

/* Orange Background (Before) */
.cew-team-banner::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: auto;
	width: 70%;
	max-width: 100%;
	background-color: #FF6B35;
	z-index: 1;
}

/* Image (After) */
.cew-team-banner::after {
	content: '';
	position: absolute;
	top: 15%;
	right: auto;
	bottom: 15%;
	left: 0;
	width: 40%;
	max-width: 100%;
	z-index: 2;
	background-image: var(--team-banner-image);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* Content */
.cew-team-banner__content {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	padding: 60px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.cew-team-banner__text-1 {
	margin: 0 0 15px 0;
	padding: 0;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1.2;
	color: #FFFFFF;
	font-size: 48px;
}

.cew-team-banner__text-2 {
	margin: 0 0 40px 0;
	padding: 0;
	font-weight: 400;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.4;
	color: #000000;
	font-size: 18px;
}

.cew-team-banner__text-3 {
	margin: 0 0 30px 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}

.cew-team-banner__text-3-part1 {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1;
	color: #FFFFFF;
	font-size: 120px;
	-webkit-text-stroke: 2px #FFFFFF;
	text-stroke: 2px #FFFFFF;
	text-shadow: none;
}

.cew-team-banner__text-3-part2 {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1;
	color: #000000;
	font-size: 180px;
	-webkit-text-stroke: 3px #000000;
	text-stroke: 3px #000000;
	text-shadow: none;
}

.cew-team-banner__text-4 {
	margin: 0;
	padding: 0;
}

.cew-team-banner__text-4 p {
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.5;
	color: #000000;
	font-size: 16px;
}

.cew-team-banner__text-4 p:last-child {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.cew-team-banner {
		min-height: 500px;
	}

	.cew-team-banner__content {
		padding: 40px 60px;
	}

	.cew-team-banner__text-1 {
		font-size: 36px;
	}

	.cew-team-banner__text-3-part1 {
		font-size: 80px;
	}

	.cew-team-banner__text-3-part2 {
		font-size: 120px;
	}
}

@media (max-width: 768px) {
	.cew-team-banner {
		min-height: 400px;
	}

	.cew-team-banner__content {
		padding: 30px 40px;
	}

	.cew-team-banner__text-1 {
		font-size: 28px;
	}

	.cew-team-banner__text-2 {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.cew-team-banner__text-3-part1 {
		font-size: 60px;
	}

	.cew-team-banner__text-3-part2 {
		font-size: 80px;
	}

	.cew-team-banner__text-4 p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.cew-team-banner {
		min-height: 350px;
	}

	.cew-team-banner__content {
		padding: 20px 30px;
	}

	.cew-team-banner__text-1 {
		font-size: 24px;
	}

	.cew-team-banner__text-2 {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.cew-team-banner__text-3-part1 {
		font-size: 40px;
	}

	.cew-team-banner__text-3-part2 {
		font-size: 60px;
	}

	.cew-team-banner__text-4 p {
		font-size: 12px;
	}
}

