@import url('icons.css');
@import url('carousel.css');

div#home-search {
	background: linear-gradient(135deg, #F8FFF5 0%, #EEF1FA 60%, #F0FAF0 100%);
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 500px;
	padding: 60px 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}


.home-search-container {
	max-width: 1290px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px !important;
	box-sizing: border-box;
}

form#search-job {
	width: 100%;
}

.home-search-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	width: 100%;
}

.search-form-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 670px;
}

.ads-col {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* HERO BADGE */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 100px;
	background: rgba(55, 157, 21, 0.12);
	border: 1px solid rgba(55, 157, 21, 0.35);
	color: #2d7a10;
	font-family: Poppins;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 8px;
}

.hero-badge__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* HERO HEADING */
h1.homeSearchHeading {
	color: var(--Secondary-900, #060C14);
	font-family: Poppins;
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 52px;
	margin: 0 0 8px 0;
	padding: 0;
}

.homeSearchHeading--green {
	color: #3EB318;
}

/* HERO DESCRIPTION */
.homeSearchDescription {
	color: #5F6B85;
	font-family: Poppins;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin: 0 0 32px 0;
	max-width: 452px;
}

/* HERO SEARCH CARD */
.hero-search-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(6, 12, 20, 0.10), 0 2px 8px rgba(6, 12, 20, 0.06);
	padding: 24px;
	box-sizing: border-box;
}

	.hero-search-card .search-job-group {
		height: 56px;
		background: #EEF1FA;
		border-radius: 8px;
		display: flex;
		align-items: center;
		padding: 0;
		margin: 0;
		position: relative;
		box-sizing: border-box;
	}

		.hero-search-card .search-job-group i {
			left: 14px;
			top: 50%;
			transform: translateY(-50%);
		}

	.hero-search-card input[type="text"],
	.hero-search-card select {
		height: 100%;
		background: transparent !important;
		border: none !important;
		outline: none !important;
		font-family: Poppins;
		font-size: 15px;
		color: #060C14;
		padding: 0 12px 0 48px;
		box-sizing: border-box;
		width: 100%;
		flex: 1;
	}

		.hero-search-card input[type="text"]::placeholder {
			color: #8A96A8 !important;
			font-size: 15px;
		}

	.hero-search-card select {
		color: #060C14 !important;
		appearance: none !important;
		-webkit-appearance: none !important;
		padding-right: 36px !important;
		background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23060C14' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
		background-repeat: no-repeat !important;
		background-position: right 10px center !important;
		background-size: 18px !important;
		background-color: transparent !important;
	}

	.hero-search-card .search-job-btn {
		height: 52px;
		width: 100%;
		background: #1f242e;
		color: #61e437;
		border: none;
		border-radius: 8px;
		font-family: Poppins;
		font-size: 15px;
		font-weight: 700;
		cursor: pointer;
		letter-spacing: 0.5px;
		transition: background-color 0.2s ease;
		padding: 0;
		margin: 0;
	}

		.hero-search-card .search-job-btn:hover {
			background: #2c3344;
		}

/* HERO POPULAR SEARCHES */
.hero-popular-searches {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.hero-popular-searches__label {
	color: #343b4b;
	font-family: Poppins;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	flex-shrink: 0;
}

.hero-popular-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	padding: 0 14px;
	border: 1px solid rgba(29, 29, 29, 0.15);
	border-radius: 9999px;
	background: #ffffff;
	color: #1f242e;
	font-family: Poppins;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.15s ease, background 0.15s ease;
}

	.hero-popular-tag:hover {
		border-color: #379D15;
		background: rgba(55, 157, 21, 0.06);
		color: #2d7a10;
		text-decoration: none;
	}

.hero-popular-tag--seemore {
	color: #379D15;
	border-color: rgba(55, 157, 21, 0.4);
}

h2.homeSearchSubheading {
	color: var(--Secondary-900, #060C14);
	font-family: Poppins;
	font-size: 38px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	margin: 0 0 32px 0;
	padding: 0;
}

#search-job input[type="text"],
#search-job select {
	background-color: var(--color-secondary-50);
	border-radius: 10px;
	color: var(--color-secondary-500);
	border: none;
	font-size: 14px;
	width: 100%;
	box-sizing: border-box;
	flex: 1;
	min-width: 0;
	height: 100%;
	margin-bottom: auto;
	padding: 9px 5px 8px 45px;
}

	#search-job input[type="text"]::placeholder {
		color: var(--color-secondary-500) !important;
	}

.search-job-group {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	align-items: center;
	gap: 12px;
	padding: 10px 8px;
	background-color: var(--color-secondary-50);
	border-radius: 10px;
	box-sizing: border-box;
}

	.search-job-group i {
		position: absolute;
		left: 16px;
		top: 50%;
		transform: translateY(-50%);
		pointer-events: none;
		z-index: 2;
		width: 24px;
		height: 24px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		flex-shrink: 0;
	}

		.search-job-group i[class*="icon"] {
			width: 24px;
			height: 24px;
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
		}

	.search-job-group input,
	.search-job-group select {
		padding-left: 48px;
		padding-right: 0;
		border: none !important;
		background: transparent !important;
		outline: none !important;
		font-size: 14px;
		color: var(--color-secondary-500);
		transition: none !important;
		-webkit-autofill-text-color: var(--color-secondary-500) !important;
		box-shadow: none !important;
	}

	.search-job-group select {
		color: var(--color-secondary-900) !important;
		appearance: none !important;
		-webkit-appearance: none !important;
		-moz-appearance: none !important;
		padding-right: 30px !important;
		background-color: transparent !important;
		background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='0' y1='0' x2='0' y2='24' stroke='%23000' stroke-width='1.5'/%3e%3cpolyline points='8 9 14 15 20 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
		background-repeat: no-repeat !important;
		background-position: right 8px center !important;
		background-size: 20px !important;
	}

		.search-job-group input:focus,
		.search-job-group select:focus {
			border: none !important;
			outline: none !important;
			box-shadow: none !important;
		}

	.search-job-group input:-webkit-autofill,
	.search-job-group input:-webkit-autofill:hover,
	.search-job-group input:-webkit-autofill:focus,
	.search-job-group input:-webkit-autofill:active {
		-webkit-box-shadow: none !important;
		background-color: transparent !important;
		border: none !important;
	}

.search-box--combo-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	margin-top: 16px;
}

.search-job-btn {
	width: 100%;
	padding: 12px 24px;
	background-color: var(--color-secondary-900);
	color: white;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

	.search-job-btn:hover {
		background-color: var(--color-secondary-800);
	}

@media (max-width: 1024px) {
	.home-search-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.ads-col {
		display: none;
	}

	h1.homeSearchHeading {
		font-size: 40px;
		line-height: 46px;
	}

	h2.homeSearchSubheading {
		font-size: 32px;
		line-height: 36px;
	}

	.homepage-content-inner {
		padding: 0 20px;
	}

	div.SimilarJobsSection section {
		padding: 0 20px;
	}
}

@media (max-width: 767px) {
	div#home-search {
		min-height: auto;
		padding: 30px 15px;
	}

	h1.homeSearchHeading {
		font-size: 32px;
		line-height: 38px;
		margin-bottom: 8px;
	}

	h2.homeSearchSubheading {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 24px;
	}

	.search-box--combo-section {
		margin-top: 12px;
	}

	/* Background optimizations for tablet and below */
	div#flags-container {
		background-color: #ffffff;
		position: relative;
		overflow: hidden;
	}

		div#flags-container .paises-hero-overlay {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			overflow: hidden;
			pointer-events: none;
			z-index: 1;
		}

			div#flags-container .paises-hero-overlay::after {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
				pointer-events: none;
				z-index: 2;
			}

		div#flags-container .paises-hero-image {
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: center -40px !important;
			opacity: 0.7;
		}

		div#flags-container div.paises {
			position: relative;
			z-index: 2;
		}

	div.paises-home-container div.paises h2 {
		position: relative;
		z-index: 3;
		color: var(--color-secondary-900);
		font-family: Poppins;
		font-size: 42px;
		font-style: normal;
		font-weight: 700;
		line-height: 48px;
		margin: 0 0 25px 0;
		border-bottom: none;
		width: 100%;
	}

	div.RegistrationSection {
		background-position: center;
	}

	/* SIMILAR JOBS - Mobile optimization (max-width: 767px) */
	.homepage-content-inner {
		padding: 0 20px;
	}

	div.SimilarJobsSection section {
		padding: 0 20px;
	}

	.similar-job-listings {
		display: flex;
		gap: 12px;
		align-items: flex-start;
		justify-content: space-between;
	}

	.SimilarJobsPlaceholder {
		gap: 12px;
		min-width: 0;
		padding: 6px 8px;
		height: auto;
		min-height: 120px;
		background: white;
		border: none;
		border-radius: 10px;
		box-sizing: border-box;
	}

	a.SimilarJobsPlaceholder {
		text-decoration: none;
	}

	.SimilarJobsPlaceholder__logo {
		height: 70px;
		width: 70px;
		min-height: 70px;
		min-width: 70px;
	}

	.SimilarJobsPlaceholder__content h3 {
		font-size: 16px;
		margin-right: 0;
		gap: 6px;
	}

	.SimilarJobsPlaceholder__content {
		width: 100%;
		min-width: auto;
		flex: 1;
	}

	.SimilarJobsPlaceholder__actions {
		width: 24px;
		max-width: 24px;
		min-width: 24px;
	}

	.rec-job-listing {
		display: flex;
		align-items: center;
		border-radius: 10px;
		border: 1px solid rgba(29, 29, 29, 0.15);
		background: #fff;
		width: 100%;
		min-width: 0;
		padding: 8px 10px;
		height: 170px;
		box-sizing: border-box;
	}
}

@media only screen and (min-width: 767px), screen and (device-height: 1024px) and (orientation: landscape) {
	div#brandbox.container {
		width: 940px;
	}
}

main#page {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}

	main#page section:not(:first-of-type) {
		max-width: 1290px;
		margin: 0 auto;
		margin-bottom: 0;
		width: 100%;
		padding: 60px 20px;
		box-sizing: border-box;
		overflow: hidden;
	}

/* Full-width background sections - background uses 100% width */
div.SimilarJobsSection,
div.RegistrationSection,
div.prominent-companies,
div.PopularSearchSection,
div.JobsByIndustriesSection {
	background-color: var(--color-secondary-50);
	width: 100%;
	padding: 30px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

	/* Inner content stays within max-width: 1290px */
	div.SimilarJobsSection section,
	div.RegistrationSection section,
	div.prominent-companies section,
	div.PopularSearchSection section,
	div.JobsByIndustriesSection section {
		max-width: 1290px;
		margin: 0 auto;
		width: 100%;
		padding: 35px 20px;
		box-sizing: border-box;
		overflow: hidden;
	}

/* COUNTRIES */
div#flags-container {
	background-color: #ffffff;
	position: relative;
	height: auto;
	min-height: 500px;
	width: 100%;
	margin: 0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

	div#flags-container .paises-hero-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
		pointer-events: none;
		z-index: 1;
	}

		div#flags-container .paises-hero-overlay::after {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
			pointer-events: none;
			z-index: 2;
		}

	div#flags-container .paises-hero-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: 0px -85px;
		opacity: 0.7;
	}

	div#flags-container div.paises {
		position: relative;
		z-index: 2;
		max-width: 1290px;
		margin: 0 auto;
		padding: 30px 20px;
		box-sizing: border-box;
		width: 100%;
		border-radius: 12px;
	}

div.paises-home-container div.paises h2 {
	position: relative;
	z-index: 3;
	color: var(--color-secondary-900);
	font-family: Poppins;
	font-size: 56px;
	font-style: normal;
	font-weight: 700;
	line-height: 60px;
	margin: 0 0 30px 0;
	border-bottom: none;
	width: 100%;
	max-width: 100%;
}

div.paises ul {
	position: relative;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.paises-home-container .paises ul li {
	border-radius: 12px;
	width: 148px;
	height: 140px;
	padding: 14px 10px;
	background-color: var(--color-secondary-50);
	box-shadow: 0 244px 68px 0 rgba(57, 59, 65, 0.00), 0 156px 62px 0 rgba(57, 59, 65, 0.01), 0 88px 53px 0 rgba(57, 59, 65, 0.05), 0 39px 39px 0 rgba(57, 59, 65, 0.09), 0 10px 21px 0 rgba(57, 59, 65, 0.10);
}

div.paises ul li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	text-align: center;
	height: 100%;
}

	div.paises ul li a img {
		width: 81px;
		height: 54px;
		aspect-ratio: 3/2;
		flex-shrink: 0;
	}

	div.paises ul li a span {
		color: var(--color-secondary-800);
		font-family: Poppins;
		font-size: var(--Scale-400);
		font-style: normal;
		font-weight: 600;
		line-height: 1.2;
		word-break: break-word;
		overflow-wrap: break-word;
	}

/* FEATURE JOBS */

.similar-jobs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	width: 100%;
}

@media (max-width: 1024px) {
	.similar-jobs {
		grid-template-columns: repeat(2, 1fr);
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

@media (max-width: 767px) {
	.similar-jobs {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 0;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

.SimilarJobsPlaceholder {
	display: flex;
	gap: 26px;
	align-items: center;
	background: white;
	border-radius: 12px;
	padding: 3px;
	box-sizing: border-box;
	width: 100%;
	height: 162px;
}

.SimilarJobsPlaceholder__logo--content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex-shrink: 0;
	height: 100%;
}

.SimilarJobsPlaceholder__logo {
	height: 80px;
	width: 80px;
	min-height: 80px;
	min-width: 80px;
	border-radius: 8px;
	position: relative;
	flex-shrink: 0;
}

.SimilarJobsPlaceholder__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	color: var(--color-secondary-800);
	flex: 1;
	justify-content: space-between;
	width: 100%;
}

	.SimilarJobsPlaceholder__content h3 {
		margin: 0;
		align-self: stretch;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 24px;
		color: var(--color-secondary-800);
		text-overflow: ellipsis;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		-webkit-box-orient: vertical;
		min-height: 48px;
		height: 48px;
	}

	.SimilarJobsPlaceholder__content label {
		margin: 0;
		padding: 0;
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 20px;
		width: 100%;
		color: var(--color-secondary-700);
		height: 20px;
		align-items: center;
	}

		.SimilarJobsPlaceholder__content label.company {
			height: 40px;
			text-overflow: ellipsis;
			overflow: hidden;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			line-clamp: 2;
			-webkit-box-orient: vertical;
			align-items: flex-start;
		}

		.SimilarJobsPlaceholder__content label.location {
			color: var(--color-secondary-700);
			font-size: 13px;
			height: 20px;
			line-height: 20px;
		}

.SimilarJobsPlaceholder__actions {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 24px;
	min-width: 24px;
	max-width: 24px;
	flex-shrink: 0;
	position: relative;
	padding-inline: 5px;
	align-self: flex-start;
}

.new-job-label-mobile {
	display: flex !important;
}

div.SimilarJobsPlaceholder__actions span.new-job-label {
	border-radius: var(--Scale-950);
	background: var(--color-info-400);
	display: flex;
	padding: 4px 8px;
	justify-content: center;
	align-items: center;
	gap: 4px;
	color: var(--color-primary-50);
	font-family: Poppins;
	font-size: 11px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	position: absolute;
	top: -8px;
	right: -8px;
}

div.SimilarJobsPlaceholder__logo--content span.new-job-label {
	border-radius: var(--Scale-950);
	background: var(--color-info-400);
	display: flex;
	padding: 4px 8px;
	justify-content: center;
	align-items: center;
	gap: 4px;
	color: var(--color-primary-50);
	font-family: Poppins;
	font-size: 11px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	white-space: nowrap;
}

/* FEATURE COMPANIES SECTION */
div.SimilarJobsSection {
	background-color: var(--color-secondary-50);
	width: 100%;
	padding: 60px 0;
	margin: 0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}

	div.SimilarJobsSection section {
		max-width: 1290px;
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}

/* SECCIONES HOMEPAGE — estilo homologado */
.homepage-content-section {
	background: #ffffff;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 48px 0;
	margin: 0;
	box-sizing: border-box;
}

.homepage-content-inner {
	max-width: 1290px;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.homepage-section-title {
	color: #1f242e;
	font-family: Poppins;
	font-size: 28px;
	font-weight: 400;
	line-height: 48px;
	text-align: left;
	margin: 0 0 32px 0;
	padding: 0;
}

/* FEATURED COMPANY STANDS */
.fcs-section {
	width: 100%;
}

.fcs-logos {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 56px;
	flex-wrap: wrap;
}

.fcs-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 140px;
	flex-shrink: 0;
	text-decoration: none;
}

	.fcs-logo img {
		max-width: 140px;
		max-height: 140px;
		width: 100%;
		height: 100%;
		object-fit: contain;
		transition: opacity 0.2s ease;
	}

	.fcs-logo:hover img {
		opacity: 0.8;
	}

@media (max-width: 900px) {
	.fcs-logos {
		gap: 32px;
	}

	.fcs-logo {
		width: 110px;
		height: 110px;
	}
}

@media (max-width: 600px) {
	.similar-jobs {
		grid-template-columns: 1fr;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.homepage-content-section {
		padding: 32px 0;
	}

	.homepage-content-inner {
		padding: 0 20px;
	}

	.homepage-section-title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 20px;
	}

	.fcs-logos {
		gap: 20px;
		justify-content: center;
	}

	.fcs-logo {
		width: 90px;
		height: 90px;
	}
}

div.featured-companies {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.feature-companies--container,
.feature-companies--container--content {
	display: flex;
}

.feature-companies--container {
	justify-content: center;
	align-items: center;
}

.feature-companies--container--content {
	flex-direction: column;
}

.featured-companies--title {
	color: var(--color-secondary-800);
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 56px;
}

.feature-companies--container--content h3 {
	max-width: 600px;
	font-family: Poppins;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	color: var(--color-secondary-800);
}

.feature-companies--logos {
	display: flex;
	flex-direction: row;
	gap: 15px;
	flex-wrap: wrap;
	align-items: center;
}

a.logo-empresas img {
	width: 100px;
	height: auto;
	object-fit: contain;
	aspect-ratio: 1 / 1;
	max-width: 120px;
}

/* REGISTRATION */
div.RegistrationSection {
	background-color: #ffffff;
	width: 100%;
	padding: 0;
	box-sizing: border-box;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* REGISTRATION — layout */
section.reg-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	width: 100%;
	max-width: 1290px;
	padding: 48px 40px;
	box-sizing: border-box;
}

.reg-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	flex: 1;
	max-width: 480px;
}

h2.reg-title {
	color: #060C14;
	font-family: Poppins;
	font-size: 40px;
	font-weight: 800;
	line-height: 48px;
	margin: 0;
	padding: 0;
}

p.reg-subtitle {
	color: #5F6B85;
	font-family: Poppins;
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	margin: 0;
}

a.reg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #1f242e;
	border: none;
	color: #61e437;
	font-family: Poppins;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
	padding: 14px 24px;
	border-radius: 10px;
	text-decoration: none;
	letter-spacing: 0.5px;
	transition: background 0.2s ease;
}

	a.reg-button:hover {
		background: #2c3344;
		text-decoration: none;
	}

.reg-images {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.reg-img {
	border-radius: 16px;
	object-fit: cover;
	display: block;
}

.reg-img--woman {
	width: 261px;
	height: 260px;
}

.reg-img--bell {
	width: 240px;
	height: 260px;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.reg-images {
		gap: 16px;
	}

	.reg-img--woman,
	.reg-img--bell {
		width: 190px;
		height: 200px;
	}
}

@media (max-width: 767px) {
	section.reg-section {
		flex-direction: column;
		align-items: center;
		padding: 24px 16px;
		gap: 20px;
	}

	.reg-text {
		align-items: center;
		text-align: center;
		max-width: 100%;
	}

	h2.reg-title {
		font-size: 24px;
		line-height: 32px;
	}

	p.reg-subtitle {
		font-size: 15px;
		line-height: 22px;
	}

	a.reg-button {
		width: 100%;
		text-align: center;
		justify-content: center;
		padding: 12px 16px;
		font-size: 13px;
	}

	.reg-images {
		width: 100%;
		justify-content: center;
	}

	.reg-img--woman,
	.reg-img--bell {
		width: 120px;
		height: 130px;
	}
}

div.PopularSearchSection {
	background-color: var(--color-secondary-50);
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

	div.PopularSearchSection section {
		max-width: 1290px;
		margin: 0 auto;
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}

section.Registration--Content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 475px;
	gap: 32px;
	width: 100%;
	position: relative;
}

.Registration--Content-circle {
	position: absolute;
	border-radius: 50%;
	background-color: var(--color-primary-500);
}

.Registration--Content-circle-left {
	width: 113px;
	height: 113px;
	left: 80px;
	top: 40%;
	transform: translateY(-50%);
}

.Registration--Content-circle-right {
	width: 63px;
	height: 63px;
	right: 100px;
	top: 60%;
	transform: translateY(-50%);
}

.Registration--Content-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 80px;
}

.Registration--Content-left {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 578px;
	flex: 0 0 auto;
}

.Registration--Content-right {
	flex: 1;
	height: 320px;
	min-width: 300px;
}

h2.Registration--Content-title {
	width: auto;
	color: var(--color-secondary-900);
	text-align: center;
	font-family: Poppins;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: 48px;
	margin: 0;
	position: relative;
	z-index: 2;
}

.Registration--Content-subtitle {
	color: var(--color-secondary-900);
	text-align: center;
	font-family: Poppins;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	margin-block: 0px;
}

span.Registration--Content-title {
	width: auto;
	color: var(--color-secondary-900);
	text-align: center;
	font-family: Poppins;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: 48px;
	margin: 0;
	position: relative;
	z-index: 2;
}

a.Registration--Content-button {
	border-radius: 10px;
	background: var(--color-secondary-800);
	padding: 20px;
	align-items: center;
	color: var(--color-primary-400);
	font-family: Poppins;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	width: fit-content;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	z-index: 2;
}

/* PROMINENT COMPANIES */
div.prominent-companies {
	background-color: #F6F7FC;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 60px 0;
	margin: 0;
	box-sizing: border-box;
}

	div.prominent-companies section {
		max-width: 1290px;
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}

/* FEATURED COMPANIES — nuevo diseño carrusel */
.fc-section {
	width: 100%;
}

.fc-title {
	color: #060C14;
	font-family: Poppins;
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
	margin: 0 0 32px 0;
}

.fc-carousel-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.fc-carousel {
	flex: 1;
	overflow: hidden;
}

.fc-track {
	display: flex;
	gap: 16px;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.fc-card {
	flex: 0 0 calc((100% - 5 * 16px) / 6);
	min-width: 0;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(6, 12, 20, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 88px;
	padding: 12px 16px;
	box-sizing: border-box;
	text-decoration: none;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

	.fc-card:hover {
		box-shadow: 0 6px 20px rgba(6, 12, 20, 0.14);
		transform: translateY(-2px);
	}

	.fc-card img {
		max-width: 100%;
		max-height: 56px;
		object-fit: contain;
	}


.fc-footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 24px;
}

.fc-see-more {
	color: #379D15;
	font-family: Poppins;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.15s ease;
}

	.fc-see-more:hover {
		color: #2d7a10;
		text-decoration: none;
	}

.fc-see-more__arrow {
	font-size: 16px;
}

@media (max-width: 900px) {
	.fc-card {
		flex: 0 0 calc((100% - 3 * 16px) / 4);
	}
}

@media (max-width: 600px) {
	.fc-title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 20px;
	}

	.fc-card {
		flex: 0 0 calc((100% - 1 * 16px) / 2);
		height: 72px;
	}

	.fc-footer {
		justify-content: center;
	}
}

div.feature-companies--container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin: 0 auto;
}

h2.feature-companies--title,
h3.feature-companies--subtitle {
	color: var(--color-neutral-0);
	text-align: right;
}

h2.feature-companies--title {
	font-size: var(--Scale-950);
	font-style: normal;
	font-weight: 700;
	line-height: 56px;
	margin: 0;
}

h3.feature-companies--subtitle {
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	margin: 0;
}

div.prominent-companies--container-logos {
	width: 620px;
	max-width: 620px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px
}

div.prominent-companies--container-logos-warp {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 20px;
	row-gap: 20px;
}

	div.prominent-companies--container-logos-warp a.logo-empresas {
		border-radius: var(--Scale-400);
		/*box-shadow: 0 129px 36px 0 rgba(51, 105, 7, 0.00), 0 82px 33px 0 rgba(51, 105, 7, 0.01), 0 46px 28px 0 rgba(51, 105, 7, 0.05), 0 21px 21px 0 rgba(51, 105, 7, 0.09), 0 5px 11px 0 rgba(51, 105, 7, 0.10);*/
	}

		div.prominent-companies--container-logos-warp a.logo-empresas img {
			border-radius: var(--Scale-400);
			object-fit: contain;
			width: 100px;
			height: 100px;
		}

.prominent-companies--container-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: space-evenly;
	align-items: end;
}

.prominent-companies--circle-first {
	content: "";
	width: 60px;
	height: 113px;
	display: inline-block;
	background: linear-gradient(90deg, rgba(97, 228, 55, 1) 0%, rgba(62, 179, 24, 1) 50%);
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
}

.prominent-companies--circle-second {
	content: "";
	width: 25px;
	height: 50px;
	display: inline-block;
	background: linear-gradient(90deg, rgba(97, 228, 55, 1) 0%, rgba(62, 179, 24, 1) 50%);
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
}

.prominent-companies--info {
	display: inline-flex;
	height: 260px;
	padding: var(--Scale-100) var(--Scale-600);
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 16px;
	border-radius: var(--Scale-400);
	background: var(--color-primary-800);
	box-shadow: 0 129px 36px 0 rgba(51, 105, 7, 0.00), 0 82px 33px 0 rgba(51, 105, 7, 0.01), 0 46px 28px 0 rgba(51, 105, 7, 0.05), 0 21px 21px 0 rgba(51, 105, 7, 0.09), 0 5px 11px 0 rgba(51, 105, 7, 0.10);
	width: 490px;
}

div.prominent-companies--container {
	width: 628px;
	max-width: 628px;
}

a.btn-show-more-possitions {
	height: 64px;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	background: var(--color-primary-500);
	border: solid 1px var(--color-primary-500);
	color: var(--color-secondary-800);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

div.prominent-companies--container-content {
	width: 628px;
	text-align: right;
	display: flex;
}

/* TESTIMONIAL */
div.testimonial--container {
	text-align: center;
}

div.testimonial--container-cards-container {
	display: flex;
	gap: 16px;
	overflow: hidden;
	align-items: center;
	scroll-behavior: smooth;
	transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

h2.testimonial--container-title {
	color: var(--color-secondary-800);
	text-align: center;
	font-family: Poppins;
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 56px;
}

h3.testimonial--container-subtitle {
	color: #000;
	text-align: center;
	font-family: Poppins;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
}

div.testimonial-card {
	display: flex;
	padding: 20px;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	border-radius: 10px;
	background: var(--color-neutral-0);
	border: 1px solid var(--color-secondary-100);
	width: 280px;
	max-height: 363px;
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease, opacity 0.4s ease;
	transform-origin: center bottom;
	transform: translateY(18px) scale(0.94);
	opacity: 0.7;
}

	div.testimonial-card p {
		margin: 0;
	}

img.testimonial-card--logo {
	width: 100px;
	height: 100px;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1/1;
	border-radius: 10px;
	border: 1px solid var(--color-secondary-100);
	background-repeat: no-repeat;
}

p.testimonial-card--message {
	color: var(--color-secondary-800);
	text-align: center;
	font-family: Poppins;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 19px;
}

p.testimonial-card--name {
	color: var(--color-secondary-800);
	text-align: center;
	font-family: Poppins;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

p.testimonial-card--company {
	color: var(--color-secondary-800);
	font-family: Poppins;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
}

div.testimonial-card.card-active {
	max-width: 470px;
	min-width: 470px;
	max-height: 409px;
	min-height: 409px;
	transform: translateY(0) scale(1.00);
	/*box-shadow: 0 35px 55px rgba(11, 26, 53, 0.18);*/
	opacity: 1;
}

	div.testimonial-card.card-active img.testimonial-card--logo {
		width: 128px;
		height: 128px;
	}

	div.testimonial-card.card-active p.testimonial-card--message {
		font-size: 24px;
		font-style: normal;
		font-weight: 600;
		line-height: 21px;
	}

	div.testimonial-card.card-active p.testimonial-card--name {
		font-size: 18px;
		font-style: normal;
		font-weight: 600;
		line-height: 24px;
	}

	div.testimonial-card.card-active p.testimonial-card--company {
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
	}

.show-more-testimonials {
	color: var(--color-primary-700);
	text-align: center;
	font-family: Poppins;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	display: none;
}

div.testimonial-card.card-active .show-more-testimonials {
	display: block;
}

/* MOBILE STYLES */
@media (max-width: 600px) {
	div .loader-overall {
		display: none;
	}

	div#home-search {
		min-height: auto;
		padding: 30px 15px;
	}

	.home-search-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	.brand-box-img {
		display: none;
	}

	.search-form-wrapper {
		flex: 0 0 auto;
		width: 100%;
		align-items: center;
	}

	form#search-job {
		text-align: center;
		align-items: center;
	}

	h1 {
		margin: 0 0 0.3em;
		text-align: center;
	}

		h1.homeSearchHeading {
			font-size: 32px;
			font-style: normal;
			font-weight: 700;
			line-height: 38px;
			margin: 0 auto 8px auto;
		}

	.homeSearchDescription {
		font-size: 20px;
		line-height: 22px;
		margin-bottom: 20px;
		max-width: 100%;
	}

	.hero-popular-searches {
		margin-top: 16px;
	}

	.hero-popular-tag {
		font-size: 12px;
		height: 28px;
		padding: 0 10px;
	}

	h2 {
		text-align: center;
		font-weight: 600;
		font-size: 24px;
		line-height: normal;
		padding: 0 1.5em 0 1.5em;
	}

	form#search-job h2 {
		width: 290px;
		text-align: center;
		font-size: 20px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin: 0 auto 24px auto;
	}

	main#page section:not(:first-of-type),
	div.SimilarJobsSection section,
	div.prominent-companies section,
	div.JobsByIndustriesSection section {
		max-width: 100%;
		margin: 0 auto;
		margin-bottom: 40px;
		padding: 0 20px;
		box-sizing: border-box;
	}

	main#page section:not(:first-of-type) {
		padding: 0 5px;
	}

	div.prominent-companies section {
		padding: 0;
	}

	div.SimilarJobsSection section {
		margin-bottom: 0;
	}

	.search-job-group {
		width: 100%;
		margin: 0;
	}

	.search-box--combo-section {
		text-align: center;
		align-items: center;
		width: 100%;
		margin: 12px 0 0 0;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.search-job-group i {
		top: 21px;
	}

	h2.module-heading {
		text-align: center;
		padding: 0 20px;
		margin-bottom: 40px;
		margin-top: 40px;
	}

	.prominent-companies--info {
		width: 335px;
		height: 136px;
		gap: var(--Scale-100);
		padding: var(--Scale-300);
	}

	/* COUNTRIES */
	div#flags-container {
		background-color: #ffffff;
		height: auto;
		min-height: 340px;
		position: relative;
		overflow: hidden;
	}

		div#flags-container div.paises {
			position: relative;
			z-index: 2;
			border-radius: 12px;
			padding: 20px 20px;
		}

	div.paises-home-container div.paises h2 {
		position: relative;
		z-index: 3;
		width: 100%;
		color: var(--color-secondary-900);
		font-family: Poppins;
		font-size: 28px;
		font-style: normal;
		font-weight: 700;
		line-height: 36px;
		text-align: center;
		margin: 0 0 20px 0;
	}

	div.paises ul {
		position: relative;
		z-index: 3;
		display: flex;
		flex-wrap: wrap;
		gap: 16px;
		width: 100%;
		justify-content: center;
		padding-inline-start: 0;
	}

	.paises-home-container .paises ul li {
		width: 175px;
		height: 170px;
		padding: 14px 10px;
	}

	div.paises ul li a {
		justify-content: center;
		width: 100%;
	}

		div.paises ul li a img {
			width: 108px;
			height: 72px;
			aspect-ratio: 3/2;
		}

		div.paises ul li a span {
			font-size: 17px;
			font-weight: 600;
			font-style: normal;
			line-height: 1.25;
			word-break: break-word;
			overflow-wrap: break-word;
		}



	div.SimilarJobsPlaceholder__actions span.new-job-label.new-job-label-desktop {
		display: none !important;
	}

	.new-job-label-mobile {
		display: flex !important;
	}

	button#btnSubmit {
		height: 50px;
		text-align: center;
		font-size: 15px;
		width: 180px;
		margin-top: 10px;
		margin-bottom: 0;
	}

	.featured-companies--title {
		font-size: 31px;
		font-style: normal;
		line-height: normal;
		font-weight: 600;
		margin-bottom: 4px;
	}

	.featured-companies {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}

	div.feature-companies--container--content h3 {
		font-size: 19px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		color: var(--color-secondary-800);
	}

	.feature-companies--container--logo {
		display: none;
	}

	.feature-companies--container {
		padding: 0 5px;
	}

	h2.module-heading.featured-companies--title {
		padding: 0;
	}

	.div.feature-companies--container {
		display: flex;
		flex-direction: column-reverse;
	}

	h2.feature-companies--title {
		font-family: Poppins;
		font-size: 24px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		padding: 0;
		text-align: center;
		color: var(--color-primary-50);
	}

	h3.feature-companies--subtitle {
		font-family: Poppins;
		font-size: 16px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		text-align: left;
		color: var(--color-primary-50);
	}

	.prominent-companies--circle-second {
		display: none;
	}

	div.SimilarJobsSection,
	div.prominent-companies {
		max-height: fit-content;
		padding: 40px 0px;
		margin-bottom: 40px;
	}

	div.feature-companies--container {
		display: flex;
		flex-direction: column-reverse;
	}

	div.prominent-companies--container-logos {
		width: 100%;
		max-width: 100%;
	}

	div.prominent-companies--container-logos-warp {
		grid-template-columns: repeat(3, 1fr);
	}

	div.prominent-companies--container-content {
		width: 100%;
		max-width: 100%;
	}

	a.logo-empresas img {
		width: 80px;
		height: 80px;
	}

	a.btn-show-more-possitions {
		display: none;
	}

	/* TESTIMONIAL */
	div.testimonial--container {
		width: 100%;
		box-sizing: border-box;
		overflow: hidden;
	}

	div.testimonial--container-cards-container {
		justify-content: center;
		overflow-x: auto;
	}

	h2.testimonial--container-title,
	h3.testimonial--container-subtitle {
		margin: 0 auto;
	}

	h3.testimonial--container-subtitle {
		margin-bottom: 40px;
	}

	h2.testimonial--container-title,
	div.testimonial-card.card-active h2.testimonial--container-title {
		font-size: 24px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		width: auto;
		max-width: 100%;
	}

	div.testimonial-card.card-active {
		max-width: 250px;
		min-width: 250px;
		max-height: 485px;
		min-height: 485px;
	}

		h3.testimonial--container-subtitle,
		div.testimonial-card.card-active h3.testimonial--container-subtitle {
			font-size: 16px;
			font-style: normal;
			font-weight: 500;
			line-height: normal;
			width: auto;
			max-width: 100%;
		}

		div.testimonial-card,
		div.testimonial-card.card-active div.testimonial-card {
			width: 301px;
			padding: 20px;
			gap: 14px;
		}

			p.testimonial-card--message,
			div.testimonial-card.card-active p.testimonial-card--message {
				font-size: 16px;
				font-style: normal;
				font-weight: 500;
				line-height: normal;
			}

			p.testimonial-card--name,
			div.testimonial-card.card-active p.testimonial-card--name {
				font-family: Poppins;
				font-size: 14px;
				font-style: normal;
				font-weight: 700;
				line-height: normal;
			}

			p.testimonial-card--company,
			div.testimonial-card.card-active p.testimonial-card--company {
				font-size: 13px;
				font-style: normal;
				font-weight: 500;
				line-height: 16px;
			}

	/* REGISTRATION */
	div.RegistrationSection {
		background-position: center;
		min-height: auto;
		height: auto;
		padding: 0;
	}

	section.Registration--Content {
		height: auto;
		min-height: auto;
		flex-direction: column;
		gap: 24px;
		padding: 0;
	}

	.Registration--Content-circle-left,
	.Registration--Content-circle-right {
		display: none;
	}

	h2.Registration--Content-title {
		font-size: 28px;
		line-height: 36px;
		text-align: center;
		width: 100%;
		margin: 0;
	}

	a.Registration--Content-button {
		width: 100%;
		text-align: center;
		padding: 16px 20px;
		font-size: 14px;
	}
}

/* =====================================================
   VIEW COMPANIES — Directorio de empresas destacadas
   ===================================================== */

.vc-page {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 48px 0 64px;
	background: #ffffff;
}

.vc-inner {
	max-width: 1290px;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

h1.vc-title {
	font-family: Poppins, sans-serif;
	font-size: 36px;
	font-weight: 400;
	line-height: 48px;
	color: #1f242e;
	text-align: center;
	margin: 0 0 40px 0;
}

.vc-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
	width: 100%;
}

.vc-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: 12px;
	padding: 16px;
	aspect-ratio: 1 / 1;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
	box-sizing: border-box;
}

	.vc-logo:hover {
		box-shadow: 0 4px 16px rgba(29, 29, 29, 0.12);
		border-color: rgba(29, 29, 29, 0.20);
	}

	.vc-logo img {
		max-width: 100%;
		max-height: 100%;
		width: auto;
		height: auto;
		object-fit: contain;
	}

@media only screen and (max-width: 1024px) {
	.vc-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media only screen and (max-width: 600px) {
	.vc-inner {
		padding: 0 16px;
	}

	h1.vc-title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 24px;
	}

	.vc-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}
