/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
.sticky-header {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 0;
	z-index: 1000;
}

.my-hero {
	background-image: linear-gradient(0deg, #f3f7fc, #f0f8ff, #fafcff);
}

.custom-shadow {
	filter: drop-shadow(rgba(0, 0, 0, 0.05) -8px 10px 12px);
}

h1 span:first-child {
	color: var(--theme-palette-color-2);
	display: block;
	font-size: 94%;
	margin-bottom: 3px;
}

.domain-hero .elementor-button-content-wrapper,
.my-hero .elementor-button-content-wrapper {
	align-items: center;
}

.domain-hero .elementor-button-icon,
.my-hero .elementor-button-icon {
	color: #2F2F4C;
	font-size: 22px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	width: 38px;
	border-radius: 50%;
}

.domain-list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	background: #f3f7fc;
	padding: 16px 20px 16px 30px;
	border: 1px solid #e3ebfc;
	border-radius: 14px;
	margin-bottom: 30px;
}

.domain-list-header h3 {
	font-size: 1.25rem;
	font-family: "Inter";
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}

.filter-form {
	display: flex;
	gap: 16px;
	width: 400px;
}

.filter-form select,
.filter-form select:focus {
	color: #444444;
	font-size: 15px;
	font-weight: 500;
	background-color: #ffffff;
	padding: 8px 24px 8px 16px;
	height: auto;
	background-position: 93% center;
	border: 1px solid #e3ebfc;
	border-radius: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.filter-form button,
.filter-form button:hover {
	color: #242356;
	font-size: 14px;
	background: var(--theme-palette-color-7);
	min-width: 130px;
	border-radius: 8px;
	text-align: center;
}

.domains-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.domains-list .domain-card {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	column-gap: 20px;
	align-items: center;
	background: #f3f7fc;
	border: 1px solid #e3ebfc;
	padding: 20px 20px 20px 24px;
	border-radius: 16px;
}

.domains-list .domain-card .icon {
	height: 40px;
	width: 40px;
	color: #ffffff;
	background: var(--theme-palette-color-1);
	padding: 7px;
	border-radius: 50%;
}

.domains-list .domain-card h3 {
	font-size: 1.5rem;
	margin: 0;
	min-width: 24%;
}

.domains-list .domain-card .industry-fit {
	display: flex;
	flex-direction: row;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0;
	margin-right: 20px;
	flex: 1;
}

.domains-list .domain-card .industry-fit .industry {
	color: #383838;
	font-size: 13px;
	font-weight: 500;
	background: #ffffff;
	padding: 8px 18px;
	border-radius: 30px;
	border: 1px solid #e3ebfc;
	display: inline-block;
	flex: 1;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.domains-list .domain-card .industry-fit .industry.more {
	padding-right: 15px;
	flex: none;
}

.domains-list .domain-card .btn {
	color: var(--theme-palette-color-8);
	font-size: 14px;
	font-weight: 500;
	background: var(--theme-palette-color-1);
	display: inline-block;
	padding: 12px 24px;
	text-wrap: nowrap;
	border-radius: 8px;
	transition: all 0.3s;
}

.domains-list .domain-card .btn:hover {
	background: var(--theme-palette-color-2);
	transition: all 0.3s;
}

.domain-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 30px;
}

.domain-pagination a {
	color: var(--theme-palette-color-1);
	font-size: 15px;
	font-weight: 500;
	background-color: var(--theme-palette-color-8);
	padding: 3px 14px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	transition: all 0.3s;
}

.domain-pagination a:hover {
	color: var(--theme-palette-color-8);
	background-color: var(--theme-palette-color-2);
	border: 1px solid var(--theme-palette-color-2);
}

.domain-pagination a.active,
.domain-pagination a.active:hover {
	color: var(--theme-palette-color-8);
	background-color: var(--theme-palette-color-1);
	border: 1px solid var(--theme-palette-color-1);
}

.vm-card .elementor-icon {
	position: relative;
}

.vm-card .elementor-icon::before {
	position: absolute;
	content: '';
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;
	border: 2px solid #ffffff;
	border-radius: 50%;
}

.industry-image-wrapper {
	display: block;
}

.industry-image-wrapper>div {
	position: sticky;
	top: 160px;
}

.elementor-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {

	h1,
	h2 {
		text-wrap: pretty;
	}

	.domains-list {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: center;
	}

	.domains-list .domain-card {
		flex: 1;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		text-align: center;
		gap: 20px;
		padding: 28px;
	}

	.domains-list .domain-card h3,
	.domains-list .domain-card .industry-fit {
		max-width: 100%;
	}

	.domains-list .domain-card h3 {
		font-size: 1.25rem;
	}

	.domains-list .domain-card .industry-fit {
		display: block;
		margin-bottom: 0.5rem;
		margin-right: 0;
	}

	.domains-list .domain-card .industry-fit .industry {
		font-size: 13px;
		padding: 5px 14px;
		width: 100%;
	}

	.domains-list .domain-card .btn {
		text-align: center;
		width: 100%;
		margin-top: auto;
	}

	.domain-pagination {
		width: 100%;
	}
}

/* Mobile Styles (Below 768px) */
@media (max-width: 767px) {
	.elementor-button-icon {
		font-size: 18px;
		height: 32px;
		width: 32px;
	}

	.pum-theme-enterprise-blue .pum-container {
		padding: 24px !important;
	}

	.pum-theme-enterprise-blue .pum-title {
		font-size: 26px !important;
		font-weight: 600 !important;
		line-height: 1.2 !important;
	}

	.forminator-row:not(:last-child),
	.forminator-col:not(:last-child) {
		margin-bottom: 10px !important;
	}

	.forminator-button-submit {
		margin-top: 8px !important;
	}

	.pum-overlay {
		width: 100vw !important;
	}

	html.pum-open.pum-open-overlay.pum-open-scrollable body>:not([aria-modal=true]) {
		padding-right: 0 !important;
	}

	.domain-list-header {
		padding: 24px;
	}

	.filter-form {
		width: 100%;
	}
	
	.domains-list .domain-card .industry-fit {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 390px) {
	#captcha-1 {
		transform: scale(0.85);
		transform-origin: left;
		width: 105%;
	}

	.filter-form {
		flex-wrap: wrap;
	}

	.domain-list-header h3 {
		font-size: 1.15rem;
	}
}