:root {
	/*





	1 - Variables

	2 - GRID

	3 - Buttons

	4 - Section



    |--------------------------------------------------------------------------



    | Colors - Brand



    |--------------------------------------------------------------------------



    */

	/* Color primary */

	--color-primary: #ff5c00;

	--color-primary-hover: #e65300;

	--color-primary-dark: #cc4900;

	--color-primary-light: #ff7d33;

	--color-primary-extralight: #ffb38a;

	/* Color secondary */

	--color-secondary: #434343;

	--color-secondary-hover: #333333;

	--color-secondary-dark: #292929;

	--color-secondary-light: #666666;

	--color-secondary-extralight: #f2f2f2;

	/* Color accent */

	--color-accent: #f59e0b;

	/* Color neutral */

	--color-white: #ffffff;

	--color-black: #000000;

	/* Color title */

	--color-title: #01284c;

	--color-text: #3c3c3c;

	--color-text-light: #6b7280;

	--color-background-default: #e1e1e1;

	--color-background-light: #ffd8c2;

	--color-background-extralight: #ffd8c2;

	--color-border: #e5e7eb;

	--shadow-color: rgba(0, 0, 0, 0.45);

	/* Typography */

	--font-primary: "Poppins", sans-serif;

	--font-secondary: "Poppins", sans-serif;

	--font-title: "Poppins", sans-serif;

	--font-size-base: 16px;

	--font-size-xs: 0.75rem;

	--font-size-sm: 0.875rem;

	--font-size-md: 1rem;

	--font-size-lg: 1.2rem;

	--font-size-xl: 1.4rem;

	--font-size-2xl: 1.6rem;

	--font-size-3xl: 1.8rem;

	--font-size-4xl: 2rem;

	--font-size-5xl: 2.25rem;

	--line-height-title: 1.1;

	--line-height-subtitle: 1.3;

	--line-height-description: 1.4;

	--line-height-body: 1.5;

	--line-height-relaxed: 1.65;

	/* Headings */

	--hero-title-size: var(--h1-size);

	--hero-subtitle-size: var(--font-size-lg);

	--hero-description-size: var(--font-size-md);

	--hero-title-size-sm: var(--h2-size-sm);

	--hero-subtitle-size-sm: var(--font-size-md);

	--hero-description-size-sm: var(--font-size-md);

	--heading-color-primary: var(--color-primary);

	--heading-color-secondary: var(--color-secondary);

	--heading-weight-light: 300;

	--heading-weight-normal: 400;

	--heading-weight-semibold: 600;

	--heading-weight-bold: 700;

	--h1-size: 2rem;

	--h1-size-sm: 1.5rem;

	--h2-size: 1.625rem;

	--h2-size-sm: 1.275rem;

	--h3-size: 1.25rem;

	--h3-size-sm: 1.1rem;

	/* Buttons */

	--button-radius: 8px;

	--button-padding-y: 14px;

	--button-padding-x: 32px;

	--button-font-weight: 600;

	/* Borders */

	--border-radius-sm: 4px;

	--border-radius-md: 8px;

	--border-radius-lg: 16px;

	--border-radius-xl: 32px;

	/* Shadows */

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);

	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);

	/* Layout */

	--container-width: 1200px;

	--section-padding-y: 60px;

	--section-padding-sm: 40px 15px;

	--section-padding: 3.5rem;

	--element-padding-sm: 12px;

	--element-padding-md: 24px;

	--element-padding-lg: 48px;

	/* Header */

	--header-height: 110px;

	--header-height-sm: 80px;
}

/*

|--------------------------------------------------------------------------

| 2 - GRID

|--------------------------------------------------------------------------

*/

/**



 * --------------------------------------------------

 * Container

 * --------------------------------------------------

 */

@media (min-width: 1400px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1260px;
	}
}

/**



 * --------------------------------------------------



 * Grid Layout



 * --------------------------------------------------



 */

.grid-2 {
	grid-template-columns: repeat(2, 1fr) !important;
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr) !important;
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 991px) {
	.grid-4,
	.grid-3 {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 767px) {
	.grid-4,
	.grid-3,
	.grid-2 {
		grid-template-columns: 1fr !important;
	}
}

/*

|--------------------------------------------------------------------------

| 3 - BUTTONS

|--------------------------------------------------------------------------

*/

/* 

==========================================

   Base Button

========================================== 

*/

.button {
	display: inline-flex;

	align-items: center;

	justify-content: center;

	gap: 0.5rem;

	min-height: 48px;

	padding: 0 28px;

	border-radius: 50px;

	font-size: 16px;

	font-weight: 500;

	text-transform: uppercase;

	text-decoration: none;

	border: 2px solid transparent;

	transition: background-color 0.3s ease, color 0.3s ease,
		border-color 0.3s ease, transform 0.3s ease;

	cursor: pointer;
}

.button:hover {
	transform: translateY(-2px);
}

/* 

==========================================

   Primary

========================================== 

*/

.button--primary,
.bt-primary {
	background-color: var(--color-primary);

	color: var(--color-white);
}

.button--primary:hover,
.bt-primary:hover {
	background-color: var(--color-primary-dark);

	color: var(--color-white);
}

/* 

==========================================

   Secondary

========================================== 

*/

.button--secondary,
.bt-secondary {
	background-color: var(--color-secondary);

	color: var(--color-white);
}

.button--secondary:hover,
.bt-secondary:hover {
	background-color: var(--color-secondary-dark);

	color: var(--color-white);
}

/* 

==========================================

   Outline

========================================== 

*/

.button--outline {
	background: transparent;

	border-color: var(--color-primary);

	color: var(--color-primary);
}

.button--outline:hover {
	background-color: var(--color-primary);

	color: var(--color-white);
}

.button--outline-white {
	background: transparent;

	border-color: var(--color-white);

	color: var(--color-white);
}

.button--outline-white:hover {
	background-color: var(--color-primary);

	border-color: var(--color-primary);

	color: var(--color-white);
}

/* 

==========================================

   Sizes

========================================== 

*/

.button--lg {
	min-height: 52px;

	padding: 0 36px;

	font-size: 20px;
}

.button--sm {
	min-height: 38px;

	padding: 0 20px;

	font-size: 14px;
}

/* 

==========================================

   Responsive

========================================== 

*/

@media (max-width: 767.98px) {
	.button {
		padding: 5px 20px;

		font-size: 14px;
	}

	.button--lg {
		min-height: 48px;

		padding: 5px 32px;

		font-size: 15px;
	}

	.button--sm {
		padding: 5px 20px;
	}
}

/*

|--------------------------------------------------------------------------

| 4 - SECTION

|--------------------------------------------------------------------------

*/

.section {
	margin: 3.5rem 0;

	position: relative;
}

.section.full {
	border-radius: 0;
}

.section.media-overflow-top {
	margin-top: 220px !important;
}

.section.media-overflow-top .content-media__item img {
	margin-top: -220px;
}

/* 

==========================================================

   Section Background

========================================================== 

*/

.section-bg-default {
	background-color: var(--color-background-default);

	padding: var(--section-padding);

	margin: 0;

	border-radius: var(--border-radius-xl);
}

.section-bg-primary {
	background-color: var(--color-primary);

	padding: var(--section-padding) 0;

	margin: 0;

	border-radius: var(--border-radius-xl);
}

.section-bg-primary .section-header__title,
.section-bg-primary .section-header__subtitle {
	color: var(--color-secondary);
}

.section-bg-primary .content-media__title,
.section-bg-primary .content-media__subtitle {
	color: var(--color-white);
}

.section-bg-primary-light {
	background-color: var(--color-background-light);

	padding: var(--section-padding) 0;

	margin: 0;

	border-radius: var(--border-radius-xl);
}

.section-bg-primary-light .section-header__subtitle {
	color: var(--color-text);
}

.section-bg-primary-extralight {
	background-color: var(--color-background-extralight);

	padding: var(--section-padding) 0;

	margin: 0;

	border-radius: var(--border-radius-xl);
}

.section-bg-primary-extralight .section-header__subtitle {
	color: var(--color-text);
}

.section-bg-primary-dark {
	background-color: var(--color-secondary);

	padding: var(--section-padding);

	margin: 0;

	border-radius: var(--border-radius-xl);
}

.section-bg-primary-dark .section-header__subtitle {
	color: var(--color-white);
}

.section-bg-secondary {
	background-color: var(--color-secondary);

	padding: var(--section-padding);

	margin: 0;

	border-radius: var(--border-radius-xl);
}

.section-bg-secondary .section-header__title,
.section-bg-secondary .section-header__subtitle {
	color: var(--color-secondary);
}

.section-bg-secondary .content-media__title,
.section-bg-secondary .content-media__subtitle,
.section-bg-secondary .content-media__description {
	color: var(--color-white);
}

.section-bg-secondary-light {
	background-color: var(--color-secondary-light);

	padding: var(--section-padding);

	margin: 0;

	border-radius: var(--border-radius-xl);
}

.section-bg-secondary-extralight {
	background-color: var(--color-secondary-extralight);

	padding: var(--section-padding);

	margin: 0;

	border-radius: var(--border-radius-xl);
}

.section-bg-secondary-dark {
	background-color: var(--color-secondary-dark);

	padding: var(--section-padding);

	margin: 0;

	border-radius: var(--border-radius-xl);
}

.section-bg-white {
	background-color: var(--color-white);

	padding: var(--section-padding);

	margin: 0;

	border-radius: var(--border-radius-xl);

	position: relative;
}

.section-bg-arabesque-dark {
	background-image: url("../../images/bg-arabesco-dark.jpg");

	background-repeat: no-repeat;

	background-size: cover;

	width: 100%;

	height: 100%;

	padding: var(--section-padding) 0;

	margin: 0 !important;
}

.section-bg-arabesque-dark .section-header__title,
.section-bg-arabesque-dark .section-header__subtitle,
.section-bg-arabesque-dark .cards--default .cards__description {
	color: var(--color-white);
}

.section-bg-arabesque-light {
	background-image: url("../../images/bg-arabesco-light.jpg");

	background-repeat: no-repeat;

	background-size: cover;

	width: 100%;

	height: 100%;

	padding: var(--section-padding) 0;

	margin: 0 !important;
}

/* 

==========================================================

   Section Text

========================================================== 

*/

.section-text-default {
	color: var(--color-text);
}

.section-text-primary {
	color: var(--color-primary);
}

.section-text-primary-light {
	color: var(--color-primary-light);
}

.section-text-primary-dark {
	color: var(--color-primary-dark);
}

.section-text-secondary {
	color: var(--color-secondary);
}

.section-text-secondary-light {
	color: var(--color-secondary-light);
}

.section-text-secondary-dark {
	color: var(--color-secondary-dark);
}

.section-text-neutral {
	color: var(--color-neutral);
}

.section-text-white {
	color: var(--color-white);
}

.section-text-transparent {
	color: transparent;
}

/***** Section Header *****/

.section-header {
	display: flex;

	flex-direction: column;

	margin-bottom: 3rem;

	position: relative;
}

.section-header--left {
	align-items: flex-start;

	text-align: left;
}

.section-header--center {
	align-items: center;

	text-align: center;
}

.section-header--right {
	align-items: flex-end;

	text-align: right;
}

/***** Section Eyebrow *****/

.section-header__eyebrow {
	font-family: var(--font-primary);

	font-size: var(--font-size-sm);

	font-weight: 400;

	letter-spacing: 4px;

	color: var(--color-secondary);

	text-transform: uppercase;

	margin-bottom: 10px;
}

/***** Section Title *****/

.section-header__title {
	font-family: var(--font-title);

	font-size: var(--h2-size);

	font-weight: var(--heading-weight-bold);

	color: var(--color-primary);

	margin-bottom: 20px;

	line-height: 1.2;

	position: relative;
}

/***** Section Subtitle *****/

.section-header__subtitle {
	width: 80%;

	font-family: var(--font-primary);

	font-size: var(--h3-size);

	margin: 0 auto;

	color: var(--color-text);

	line-height: 1.6;
}

/***** Description *****/

.section-header__description {
	width: 92%;

	color: var(--color-text);

	font-family: var(--font-secondary);

	font-size: var(--font-size-md);

	line-height: 1.7;

	max-width: 700px;
}

.section-header--center .section-header__description {
	margin-inline: auto;
}

.section-header--right .section-header__description {
	margin-left: auto;
}

/***** Content *****/

.section-header__description > *:first-child {
	margin-top: 0;
}

.section-header__description > *:last-child {
	margin-bottom: 0;
}

.section-header__description p {
	margin-bottom: 1rem;
}

.section-header__description ul,
.section-header__description ol {
	margin: 0 0 1rem;

	padding-left: 1.5rem;
}

.section-header__description li + li {
	margin-top: 0.5rem;
}

.section-header__description strong {
	font-weight: 600;
}

.section-header__description a {
	color: var(--color-primary);

	text-decoration: none;
}

.section-header__description a:hover {
	color: var(--color-primary-hover);
}

/**

 * --------------------------------------------------

 * Responsive

 * --------------------------------------------------

 */

@media (max-width: 991px) {
	.section-header {
		margin-bottom: 0;
	}

	.section-header:has(.section-header__subtitle) {
		margin-bottom: 2.5rem;
	}

	.section-header__title {
		font-family: var(--font-title);

		font-size: var(--hero-title-size-sm);

		font-weight: var(--heading-weight-bold);

		margin-bottom: 40px;

		line-height: 1.2;
	}

	/***** Section Subtitle *****/

	.section-header__subtitle {
		width: 100%;

		font-family: var(--font-primary);

		font-size: var(--hero-subtitle-size-sm);

		margin: 0 auto;

		color: var(--color-text);

		line-height: 1.6;
	}

	/***** Description *****/

	.section-header__description {
		width: 100%;

		color: var(--color-text);

		font-family: var(--font-secondary);

		font-size: var(--hero-description-size-sm);

		line-height: 1.7;

		max-width: 700px;
	}
}

@media (max-width: 767px) {
	.section {
		margin: 2rem 0;
	}

	.section.has-divisor:before {
		bottom: -48px;

		width: 100%;

		height: 60px;
	}

	.section.has-divisor-bg:before {
		bottom: -15px;

		width: 100%;

		height: 60px;
	}

	.section-bg-default,
	.section-bg-primary,
	.section-bg-primary-light,
	.section-bg-primary-dark,
	.section-bg-secondary,
	.section-bg-secondary-light,
	.section-bg-secondary-extralight,
	.section-bg-light,
	.section-bg-white,
	.section-bg-faq,
	.section-bg-granulated {
		padding: var(--section-padding-sm);

		margin: 0;
	}

	.section-bg-white.has-divisor:before {
		content: "";

		position: absolute;

		right: 35px;

		bottom: -10px;

		width: 70%;

		height: 40px;

		background-image: url("../../images/divisor.png");

		background-position: 75%;

		background-repeat: no-repeat;

		background-size: cover;

		z-index: 1;
	}

	.section-bg-faq {
		padding-top: 4rem;
	}

	.section-bg-faq:before {
		top: 15%;

		width: 100%;

		height: 100%;
	}

	.section.media-overflow-top {
		margin-top: 0 !important;
	}

	.section.media-overflow-top .content-media__item img {
		width: 100%;
		margin-top: -70px;
	}

	/***** Section Title *****/

	.section-header__title {
		font-size: var(--h2-size-sm);
	}

	.section.faq-component .section-header__title {
		margin-bottom: 2.5rem;
	}

	/***** Section Subtitle *****/

	.section-header__subtitle {
		font-size: var(--font-size-md);
	}
}
