
/* DM - Sans - Font */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

*,
::after,
::before {
	box-sizing: border-box;
}

:root {
	--text-black: #000000;
	--text-dark: #515151;
	--text-white: #FFFFFF;
	--text-blue: #021722;
	--text-white-primary: #FDFDFD;
	--text-primary: #7133FF;
	--bg-primary: #7133FF;
	--bg-white-primary: #FDFDFD;
}

body {
	font-family: "DM Sans", sans-serif;
	color: var(--text-blue);
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	background: #F4F4FD;
}

th,
td {
	font-family: "DM Sans", sans-serif;
	color: var(--text-blue);
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
	margin: 0;
}

h2 {
	color: var(--text-blue);
	font-size: 54px;
	font-weight: 600;
	line-height: 60px;
	letter-spacing: -0.01em;
}

h3 {
	color: var(--text-blue);
	font-size: 36px;
	font-weight: 600;
	line-height: 47px;
	letter-spacing: -0.01em;
}

h5 {
	color: var(--text-blue);
	font-size: 26px;
	font-weight: 600;
	line-height: 36px;
	letter-spacing: -0.01em;
}

p {
	color: var(--text-dark);
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
}

small {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #515151;
}

span,
small,
time {
	display: inline-block;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	display: inline-block;
	transition: 0.3s all ease-in-out;
}

button {
	border: none;
	background: transparent;
	cursor: pointer;
	transition: 0.3s all ease-in-out;
	padding: 0;
}

input,
textarea,
select {
	border: none;
	background: transparent;
}

button:focus {
	outline: none;
	box-shadow: none !important;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border: none;
}

::placeholder {
	opacity: 1;
	color: var(--text-black);
}

::selection {
	background: #3F8C32;
	color: #FFFFFF;
}

::-webkit-selection {
    background: #3F8C32;
	color: #FFFFFF;
}

::-moz-selection {
    background: #3F8C32;
	color: #FFFFFF;
}

.container {
	padding: 0 20px;
}

@media (min-width:1400px) {
	.container {
	 	max-width: 1190px;
	}
}



/*--------------------
 Back to Top Button
---------------------*/

.scrollToTopBtn {
    background-color: #7133FF;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 20px;
    line-height: 0;
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    transform: translateY(100px);
    transition: all .5s ease;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
    
.showBtn {
    opacity: 1;
    transform: translateY(0)
}



/* 
---------------
Offcanvas
---------------
*/

#offcanvasExample {
	top: 24px;
	width: 90%;
	margin: 0 auto;
	box-shadow: 0px 4px 26.4px 0px #0000000D;
	border-radius: 10px;
	z-index: 1090;
	min-height: 324px;
}

#offcanvasExample .offcanvas-header {
	padding: 20px 16px;
}

#offcanvasExample .header-list > li > a {
	display: block;
	width: 100%;
	border-radius: 10px;
  	padding: 13px 18px;
}

#offcanvasExample .header-list > li > a:hover {
	background: rgba(220, 220, 255, 0.4);
}

.offcanvas-backdrop.show {
	opacity: 0.2;
}




/* 
------------------
header-area
------------------
*/

.fixed-header {
	box-shadow: 0px 4px 26.4px 0px #0000000D;
	border-radius: 10px;
	padding: 13px 32px;
	position: absolute;
	width: 95%;
	margin: 30px 0 0;
	left: 50%;
	transform: translatex(-50%);
	z-index: 1080;
	background: #FDFDFD;
}

.header-list {
	gap: 48px;
}

.header-list > li > a {
	color: var(--text-blue);
}

.header-list > li > a:hover {
	color: #7133FF;
}

.hdr-btn {
	color: var(--text-blue);
	border: 2px solid #DCDCFF;
	border-radius: 10px;
	padding: 13px 18px;
	font-weight: 600;
}

.hdr-btn:hover,
.btn_a {
	color: var(--text-white-primary);
	background: var(--bg-primary);
	border: 2px solid var(--bg-primary);
}




/* 
-------------------
banner-area
-------------------
*/

.banner-area {
	background-image: url(images/banner-img.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 215px 0 145px;
	position: relative;
}

.banner-ellipse {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	z-index: -1;
	width: 100%;
}

.text-h1 {
	font-size: 72px;
	font-weight: 600;
	line-height: 80px;
	letter-spacing: -0.01em;
}

.banner-content p {
	margin: 34px 0;
}

.btn_a {
	padding: 13px 18px;
	border-radius: 10px;
	font-weight: 600;
}

.btn_a:hover {
	box-shadow: 0px 1px 10px #7133FF;
}

#logo-slider {
	padding: 145px 0 0;
}

#logo-slider .owl-dots {
	display: none;
}

#logo-slider .item {
	text-align: center;
}

#logo-slider .item img {
	width: auto !important;
}



/* =====main-area start here===== */

/* 
-----------------
camino-area
-----------------
*/

.camino-heading {
	padding: 0 0 60px;
}

.camino-grid {
	display: grid;
	grid-template-columns: repeat(1, 0.5fr 0.6fr);
	column-gap: 80px;
	row-gap: 70px;
	align-items: center;
}

.camino-grid-item {
	position: relative;
}

.camino-grid-item1::after {
	content: '';
	width: 3px;
	height: 100px;
	position: absolute;
	background: #DCDCFF;
	left: 50%;
	transform: translateX(-50%);
	bottom: -85px;
	z-index: -1;
}

.camino-grid-item11::after {
	display: none;
}

.camino-grid-item span {
	color: var(--text-primary);
	border-radius: 10px;
	border: 1px solid #C3C6C7;
	padding: 7px 12px;
	font-weight: 600;
	line-height: 1;
}

.camino-grid-item h3 {
	margin: 14px 0;
}

.camino-grid-item > a {
	font-weight: 600;
	color: var(--text-primary);
	margin: 26px 0 0;
}

.camino-grid-item > a:hover {
	opacity: 0.7;
}

.camino-grid-item > a i {
	padding: 0 0 0 8px;
}




/* 
----------------
des-area
----------------
*/

.des-area {
	padding: 148px 0;
}

.des-heading {
	padding: 0 0 50px;
}

.des-box {
	background: var(--text-white-primary);
	border-radius: 15px;
	padding: 55px 55px 50px;
	transition: 0.2s all ease-in-out;
	height: 100%;
}

.des-box:hover {
	background: var(--bg-primary);
}

.des-box:hover * {
	color: var(--bg-white-primary);
	transition: 0.2s all ease-in-out;
}

.des-box h3 {
	margin: 20px 0 8px;
}

.break-1 {
	display: none;
}

@media (min-width:1200px) {
	.break-1 {
		display: inherit;
	}
}



/* 
------------------
esto-pasando-area
------------------
*/

.esto-heading {
	padding: 0 0 55px;
}

.esto-heading p {
	margin: 10px 0 0;
}

.esto-card {
	background: var(--bg-white-primary);
	border-radius: 9px;
	margin: 0 0 55px;
}

.esto-image {
	position: relative;
}

.fig-psn {
	position: absolute;
	top: 18px;
	right: 18px;
}

.esto-image > img {
	width: 100%;
	height: 325px;
	border-radius: 9px 9px 0 0;
	object-fit: cover;
	object-position: center;
}

.esto-image time {
	font-weight: 500;
	line-height: 1;
	color: var(--text-white-primary);
	background: var(--bg-primary);
	padding: 8px 5px;
	border-radius: 3px;
	font-size: 14px;
}

.esto-image time i {
	margin: 0 5px 0 0;
}

.esto-image span,
.midator-div span {
	background: #DCDCFF;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: #3F33B5;
	border-radius: 3px;
	padding: 5px 6px;
	margin-left: 5px;
}

.esto-image span.light-green {
	color: var(--text-primary);
	background: #F4F4FD;
}

.esto-image span.red {
	background: #FFF1F1;
	color: #D92D22;
}

.esto-image span i,
.esto-image span img {
	margin: 0 7px 0 0;
}

.inr-esto-div {
	padding: 30px;
}

.inr-esto-div > h5 {
	padding: 0 0 22px;
	margin: 0 0 22px;
	border-bottom: 1px solid #DCDCFF;
}

.renta-div {
	padding: 0 0 34px;
}

.renta-div span {
	color: #515151;
	margin: 0 0 6px;
}

.renta-div h5 {
	color: var(--text-primary);
	font-size: 24px;

}

.buscas-box {
	background: linear-gradient(180deg, #201C31 0%, #1E0F5C 100%);
	border-radius: 20px;
	padding: 107px 36px;
	text-align: center;
	color: var(--text-white-primary);
	margin: 145px 0 75px;
}

.buscas-box p {
	margin: 15px 0 45px;
	color: var(--text-white-primary);
}

.buscas-box h2 {
	color: var(--text-white-primary);
}

/* ---------- /community — minimal landing (same design system as home) ---------- */
.iia-page {
	overflow-x: hidden;
}

.iia-page .main-area {
	padding-bottom: 0;
}

.iia-flash-wrap {
	padding-top: 1.25rem;
	max-width: 720px;
}

/* /community sin nav: no padding extra para “clear” de header fijo (vs home .banner-area) */
.iia-page .iia-hero.banner-area {
	padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(1.75rem, 3vw, 2.5rem);
	overflow: hidden;
}

.iia-page .des-area.iia-section {
	padding: clamp(2.25rem, 4vw, 3.5rem) 0;
}

.iia-hero .banner-content {
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
}

.iia-hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
}

.iia-hero__title {
	font-size: clamp(1.75rem, 4.5vw, 3.25rem);
	line-height: 1.08;
}

.iia-hero__sub {
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.55;
	color: var(--text-dark);
}

.iia-hero__cta {
	margin-top: 0.5rem;
}

.iia-section .des-heading h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	line-height: 1.2;
}

/* “What you get”: iconos + bloque un poco más expresivo que el des-box genérico */
.iia-what-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.75rem 1.15rem 1.5rem !important;
	border: 1px solid rgba(113, 51, 255, 0.12);
	box-shadow: 0 6px 28px rgba(30, 15, 92, 0.07);
}

.iia-what-box__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.75rem;
	height: 3.75rem;
	margin: 0 0 1rem;
	border-radius: 14px;
	background: linear-gradient(165deg, rgba(113, 51, 255, 0.16) 0%, rgba(113, 51, 255, 0.05) 100%);
	color: var(--text-primary);
	line-height: 0;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.iia-what-box__svg {
	width: 1.65rem;
	height: 1.65rem;
	display: block;
	flex-shrink: 0;
}

.iia-what-box:hover .iia-what-box__icon {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	box-shadow: none;
}

.iia-what-box__text {
	font-size: 1.0625rem;
	line-height: 1.55;
	margin: 0;
	color: var(--text-dark);
	font-weight: 500;
}

.iia-muted {
	font-weight: 400;
	color: #5c6c7c;
	font-size: 0.95em;
}

.iia-soon {
	font-size: 0.92em;
	opacity: 0.88;
}

.iia-band {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
	background: #f4f4fd;
	border-top: 1px solid rgba(113, 51, 255, 0.08);
	border-bottom: 1px solid rgba(113, 51, 255, 0.08);
}

.iia-h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--text-blue);
	margin: 0 0 1.75rem;
}

.iia-h2--center {
	text-align: center;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.iia-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

@media (min-width: 992px) {
	.iia-steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem;
	}
}

.iia-steps li {
	display: flex;
	gap: 1rem;
	align-items: center;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 14px;
	padding: 1.15rem 1.15rem;
	min-height: 4.25rem;
}

.iia-steps__n {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
	color: #fff;
	background: var(--bg-primary);
	border-radius: 8px;
	line-height: 1;
}

.iia-steps__headline {
	display: block;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.35;
	color: var(--text-blue);
}

.iia-proof {
	padding: clamp(2rem, 4vw, 3rem) 0;
}

.iia-proof__text {
	font-size: 1.05rem;
	line-height: 1.5;
	color: #5c6c7c;
	margin: 0;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.iia-mid-cta {
	padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.iia-mid-cta__title {
	margin-bottom: 0;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.iia-form-wrap {
	padding-bottom: 2rem;
}

.iia-buscas-box {
	margin: 2rem auto 4rem;
	max-width: 560px;
	padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.iia-buscas-box .iia-form__title {
	font-size: clamp(1.35rem, 3vw, 1.75rem) !important;
	line-height: 1.25 !important;
	letter-spacing: -0.02em !important;
	font-weight: 700 !important;
	color: var(--text-white-primary) !important;
	margin: 0 0 0.5rem !important;
}

.iia-form__lead {
	margin: 0 auto 1.5rem !important;
	max-width: 22rem;
	font-size: 0.95rem !important;
	line-height: 1.5 !important;
	color: var(--text-white-primary) !important;
	opacity: 0.92;
}

.iia-info-form {
	margin-top: 0.25rem;
}

.iia-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

/* /application_success — post /community */
.iia-app-success-page .main-area {
	padding-bottom: 0;
}

.iia-app-success-hero {
	padding: clamp(2.5rem, 6vw, 3.5rem) 0 1.25rem;
	text-align: center;
	background: linear-gradient(180deg, #ffffff 0%, #f4f4fd 100%);
	border-bottom: 1px solid rgba(113, 51, 255, 0.08);
}

.iia-app-success__headline {
	font-size: clamp(2rem, 4.5vw, 2.85rem);
	font-weight: 700;
	line-height: 1.12;
	color: var(--text-blue);
	margin: 0 0 1.25rem;
	letter-spacing: -0.03em;
}

.iia-app-success__text {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text-dark);
	max-width: 36rem;
	margin: 0 auto 0.85rem;
}

.iia-app-success__text--emphasis {
	max-width: 32rem;
	margin-top: 1.15rem;
	font-weight: 500;
}

.iia-app-success-calendar {
	padding: 0 0 clamp(2rem, 4vw, 3rem);
	background: #f4f4fd;
}

.iia-app-success-calendar__inner {
	max-width: 820px;
	margin: 0 auto;
}

.iia-cal-embed {
	position: relative;
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(113, 51, 255, 0.14);
	box-shadow: 0 10px 44px rgba(30, 15, 92, 0.09);
	background: #fff;
}

.iia-cal-embed__frame {
	display: block;
	width: 100%;
	height: 720px;
	border: 0;
}

.iia-cal-embed__fallback {
	text-align: center;
	font-size: 0.95rem;
	margin: 1rem 0 0;
	color: #5c6c7c;
	line-height: 1.45;
}

.iia-cal-embed__link {
	color: var(--text-primary);
	font-weight: 600;
}

.iia-cal-embed__link:hover {
	text-decoration: underline;
}

.iia-cal-embed__hint {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.85rem;
	font-weight: 400;
}

@media (max-width: 767px) {
	.iia-cal-embed__frame {
		height: 640px;
	}
}


/* 
------------------
footer-area
------------------
*/

@media (min-width:1400px) {

	.footer-area .container {
		max-width: 1335px;
	}

}

.footer-area {
	padding: 65px 0;
	background: var(--bg-white-primary);
}

.ftr-logo small {
	margin: 32px 0 90px;
}

.social__icon {
	margin: 0 0 24px;
}

.ftr-content h6 {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #021722;
	margin: 0 0 12px;
}

.social__icon > li > a:hover {
	opacity: 0.7;
}

.ftr-list > li > a {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #515151;
	margin: 0 0 12px;
}

.ftr-list > li > a:hover {
	text-decoration-line: underline;
}

.ftr-box {
	background: #F4F4FD;
	border-radius: 10px;
	padding: 36px 28px;
	width: 250px;
	margin-left: auto;
}

.ftr-box h6 {
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	color: #021722;
}

.ftr-box small {
	margin: 14px 0 44px;
}






/* 
----------------
form.html
----------------
*/

@media (min-width:1200px) {

	.form-banner .container {
		padding: 0 73px;
	}

}

.form-banner {
	background-image: url(images/form-banner.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.inr-form-banner {
	background-blend-mode: overlay;
	background: linear-gradient(83.98deg, #121212 5.46%, rgba(0, 0, 0, 0) 63.68%);
	padding: 185px 0 108px;
}

.form-content {
	padding: 80px 0 0;
}

.form-content h2 {
	color: var(--bg-white-primary);
}

.info-form {
	background: #FFFFFF;
	border-radius: 10px;
	padding: 38px 18px;
	max-width: 370px;
	margin: 0 auto;
}

.form-grp {
	padding: 0 0 25px;
}

.info-form label {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: #515151;
	margin: 0 0 8px;
}

.info-form input {
	width: 100%;
	height: 54px;
	display: block;
	border: 1px solid #C3C6C7;
	border-radius: 6px;
	padding: 0 15px;
	background-image: url(images/input-text.svg);
	background-repeat: no-repeat;
	background-position: 95% center;
}

.info-form input[type="email"] {
	background-image: url(images/input-mail.svg);
}

.info-form input[type="tel"] {
	background-image: url(images/input-tel.svg);
}





/* 
----------------
faq.html
----------------
*/

.faq-banner {
	padding: 185px 0 80px;
	position: relative;
	overflow: hidden;
}

.faq-banner > img {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	z-index: -1;
}

.wdt-faq > h2 {
	margin: 0 0 42px;
}

.acc {
	margin: 0 auto;
	max-width: 915px;
}
  
.acc__card {
	position: relative;
	background: #FDFDFD;
	padding: 27px 18px;
	border-radius: 10px;
	border: 2px solid transparent;
	margin: 0 0 16px;
}

.acc__card.active {
	border: 2px solid #9F92FF;
}
  
.acc__title {
	color: #021722;
	cursor: pointer;
	display: block;
	position: relative;
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	border-radius: 10px;
	padding-right: 35px;
}

.acc__title::after {
	width: 32px;
	height: 32px;
	position: absolute;
	right: 0px;
	content: "\f107";
	transform: rotate(0);
	transition: all 0.2s ease-in-out;
	font-family: ;
	font-family: "FontAwesome";
	font-size: 16px;
	font-weight: 300 !important;
	background: #DCDCFF;
	border-radius: 50%;
	text-align: center;
	padding: 3px 0 0;
	color: #7133FF;
	top: 50%;
	transform: translateY(-50%);
}

.acc__card.active .acc__title::after {
	transform: rotate(180deg) translateY(50%);
	transition: all 0.2s ease-in-out;
	background: #7133FF;
	color: #FFF;
}
  
.acc__panel {
	color: #515151;
	display: none;
	margin: 0;
	padding: 10px 0 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
}





/* ====property-page start here==== */

@media (min-width:1400px) {

	.banner-light-box {
		padding-left: 30px !important;
		padding-right: 30px !important;
	}

	.wdt-1420 {
		max-width: 1420px;
	}

	.fixed-header.wdt-1420 {
		width: 96%;
	}

}


/* 
-------------------
banner-light-box
-------------------
*/

.banner-light-box {
	padding: 130px 0 24px;
	position: relative;
	overflow: hidden;
}

.banner-light-box > img {
	position: absolute;
	top: 0;
	z-index: -1;
	left: 0;
}

.banner-light-box .wdt-1420 {
	padding: 0;
}

.light-box-grid {
	display: grid;
	grid-template-columns: repeat(1, 0.63fr 0.37fr);
	column-gap: 20px;
}

.inr-light-box-grid {
	display: grid;
	grid-template-columns: repeat(2, 0.5fr);
	gap: 20px;
}

.inr-light-box-grid img {
	height: 100%;
}

.light-box-column > div {
	height: 100%;
}

.light-box-column1 img {
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

.mySlides img {
	height: 620px;
	object-fit: cover;
	object-position: center;
}


/* --light-box-- */

.banner-light-box .modal {
	display: none;
	position: fixed;
	z-index: 2000;
	padding: 72px 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: #000000C7;
}

.banner-light-box .modal-content {
	position: relative;
	background-color: transparent;
	margin: auto;
	padding: 0;
	width: 90%;
	max-width: 950px;
}

.banner-light-box .close {
	position: absolute;
	top: 25px;
	right: 30px;
}
  
.banner-light-box .close:hover,
.banner-light-box .close:focus {
	color: #999;
	text-decoration: none;
	cursor: pointer;
}
  
.banner-light-box .mySlides {
	display: none;
}
  
.banner-light-box .cursor {
	cursor: pointer;
}

.banner-light-box .prev,
.banner-light-box .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	transition: 0.6s ease;
	user-select: none;
	-webkit-user-select: none;
	transform: translateY(-50%);
}
  
.banner-light-box .prev {
	left: -40px;
}

.banner-light-box .next {
	right: -40px;
}

.banner-light-box .prev:hover,
.banner-light-box .next:hover {
	opacity: 0.8;
}
  
.banner-light-box .caption-container {
	text-align: center;
	background-color: black;
	padding: 2px 16px;
	color: white;
}
  
.banner-light-box .demo {
	opacity: 0.6;
}
  
.banner-light-box .active,
.banner-light-box .demo:hover {
	opacity: 1;
}
  
.banner-light-box img.hover-shadow {
	transition: 0.3s;
}


/* ----image-slider---- */

#image-slider {
	padding-left: 20px;
}

#image-slider .owl-stage-outer {
	margin: 0 0 0 -20px;
}

#image-slider .item img {
	width: 100%;
	height: 305px;
	object-fit: cover;
	object-position: center;
	border-radius: 6px;
}

#image-slider .owl-dots {
	text-align: center;
	padding: 16px 0 0;
}

#image-slider .owl-dots .owl-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #DCDCFF;
	margin: 0 4px;
}

#image-slider .owl-dots .owl-dot.active {
	background: #7133FF;
}

.credito-div p {
	font-size: 16px;
	margin: 10px 0 30px;
}

.anual-div {
	display: grid;
	grid-template-columns: repeat(1, 0.41fr 0.59fr);
	gap: 20px;
}

.anual-item {
	background: #F4F4FD;
	border-radius: 10px;
	padding: 28px 24px 22px;
}

.anual-item h6 {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--text-blue);
}

.check-group input[type="radio"] {
	width: inherit;
	height: inherit;
	display: none;
}

.check-group label {
	position: relative;
	padding: 0 0 0 26px;
	margin: 17px 0 0;
}

.check-group input[type="radio"] ~ label::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid #C3C6C7;
	background: #FDFDFD;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.check-group input[type="radio"]:checked ~ label::after {
	border: 1px solid #7133FF;
}

.check-group input[type="radio"]:checked ~ label::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #7133FF;
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.anual-item small {
	color: var(--text-blue);
	font-size: 12px;
	font-weight: 400;
	line-height: 13px;
	margin: 24px 0 0;
}

.hr-line {
	opacity: 1;
	margin: 12px 0;
	color: #DCDCFF;
}

.cnt-div span {
	color: #515151;
	margin: 4px 0 0;
}
  



/* 
------------------------
property-article-area
------------------------
*/

.property-article-area {
	padding: 0 30px 90px;
}

.report-page {
	background: #f7f9fc;
}

.report-page .text-h2,
.report-page .text-h3,
.report-page .text-h4 {
	font-size: 22px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: -0.01em;
	color: #021722;
	margin: 0 0 12px;
}

.report-page p,
.report-page li {
	font-size: 16px;
	line-height: 26px;
	color: #51606b;
}

.report-container {
	padding-top: 28px;
}

.report-card {
	border: 1px solid #edf0f5;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.report-header {
	border-left: 4px solid #2b6cb0;
}

.report-meta {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7f8c8d;
	margin-bottom: 12px;
}

.report-title {
	margin-bottom: 12px;
}

.report-card .text-h4,
.report-card .text-h3 {
	margin: 0 0 12px;
}

.report-subtitle {
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	color: #021722;
	margin: 0 0 12px;
}

.report-section-title {
	margin-top: 0;
}

.report-header .text-h2 {
	margin: 0 0 12px;
}

.report-text {
	color: #51606b;
	margin: 0 0 12px;
}

.report-summary {
	color: #51606b;
	margin-bottom: 0;
}

.report-muted {
	color: #51606b;
}

.report-small {
	font-size: 16px;
}

.report-image {
	border-radius: 12px;
	margin-bottom: 1rem;
}

.report-bullets {
	list-style: none;
	padding-left: 0;
	margin: 0 0 12px;
	color: #51606b;
}

.report-bullets li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 10px;
}

.report-bullets li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #2b6cb0;
}

.report-bullets-compact li {
	margin-bottom: 6px;
}

.report-card .report-text:last-child,
.report-card .report-bullets:last-child {
	margin-bottom: 0;
}

.report-highlights {
	display: grid;
	gap: 8px;
	color: #51606b;
	margin-bottom: 12px;
}

.property-grid {
	display: grid;
	grid-template-columns: repeat(1, 0.67fr 0.33fr);
	gap: 20px;
}


/* ----left-site---- */

.box-div {
	background: var(--bg-white-primary);
	border-radius: 10px;
	padding: 38px 28px;
	padding: 26px 26px;
}

.midator-div {
	padding: 38px 28px;
}

.midator-div span {
	background: #F4F4FD;
	color: var(--text-primary);
	vertical-align: middle;
}

.midator-div span img {
	filter: brightness(0) saturate(100%) invert(53%) sepia(100%) saturate(7494%) hue-rotate(254deg) brightness(101%) contrast(102%);
}

.midator-div a {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--text-primary);
	margin: 13px 0 0;
	text-decoration-line: underline;
}

.text-h4 {
	font-size: 26px;
	font-weight: 600;
	line-height: 36px;
	letter-spacing: -0.01em;
	color: #021722;
	margin: 27px 0 20px;
}

.invention-div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 74px;
}

.text-h5 {
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	color: #021722;
	margin: 0 0 18px;
}

.text-h6 {
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
}

.item-invention > img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}

.item-invention b {
	font-weight: 600;
}

.bdr-td {
	border-bottom: 1px solid #EBEBEB;
}

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

.tbl-area tr th {
	padding: 10px 18px;
	background: #F4F4FD;
	margin: 0 0 25px;
}

.tbl-area tr td {
	padding: 0 20px 25px;
}

.tbl-area tr th:first-child {
	border-radius: 10px 0 0 10px;
}

.tbl-area tr th:last-child {
	border-radius: 0 10px 10px 0;
}

.ubicacion-div iframe {
	border-radius: 10px;
}

.equipment-div ul > li > a {
	color: var(--text-blue);
	margin: 0 0 27px;
}

.equipment-div ul > li > a img {
	margin: 0 16px 0 0;
}

.sobre-el-div {
	display: grid;
	grid-template-columns: repeat(1, 0.26fr 0.74fr);
	gap: 25px;
}

.mx-178 {
	max-width: 178px;
	margin: 0 auto;
	text-align: center;
}

.sobre-anual-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 34px;
}

.inr-sorbe-item small {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #515151;
	margin: 0 0 2px;
}

.inr-sorbe-item h6 {
	font-size: 14.09px;
	font-weight: 600;
	line-height: 19.73px;
	color: var(--text-blue);
	margin: 0 0 17px;
}

.inr-sorbe-item span {
	font-size: 9.87px;
	font-weight: 600;
	line-height: 12.85px;
	background: #DCDCFF;
	border-radius: 3px;
	padding: 1.5px 5px;
	color: var(--text-primary);
	margin-left: 5px;
}

.inr-sorbe-item h1 {
	font-size: 36px;
	font-weight: 600;
	line-height: 47px;
	letter-spacing: -0.01em;
	color: var(--text-primary);
	margin: 9px 0;
}



/*
=====================
CIRCLE PROGRESS BAR
======================
*/

.sobre-el-area .progressbar {
	margin: 10px;
}

.sobre-el-area .circle {
	width: 120px;
	height: 96px;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	text-align: center;
}

.sobre-el-area .circle:after {
	content: "Good";
	border: 0px solid #fb4f14;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 67%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 11.28px;
	font-weight: 300;
	line-height: 19.73px;
}

.sobre-el-area .circle canvas {
	vertical-align: middle;
	border: 0px solid #fb4f14;
	border-radius: 50%;
}

.sobre-el-area .circle div {
	position: absolute;
	top: 44%;
	left: 50%;
	text-align: center;
	transform: translate(-50%, -50%);
	font-size: 22.55px;
	font-weight: 500;
	line-height: 19.73px;
}

.sobre-el-area .circle strong i {
	font-style: normal;
	font-size: 0.6em;
	font-weight: normal;
}

.sobre-el-area .circle span {
	display: block;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}


/* ---line-progressbar--- */

.line-progressbar {
	margin: 20px 0 0;
}

.line-progressbar .progress .progress-bar {
    animation-name: animateBar;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: .8s;
}

@keyframes animateBar {
    0% {transform: translateX(-100%);}
}

.line-progressbar .progress {
	background: #FDFDFD;
	height: 6px;
	border-radius: 6px;
	margin: 0 0 18px;
}

.line-progressbar .progress .progress-bar {
	background: #7133FF;
	border-radius: 6px;
}

.line-progressbar p {
	font-size: 12px;
	font-weight: 400;
	line-height: 13px;
	color: #515151;
	margin: 0 0 4px;
	text-align: start;
}

.line-progressbar p span {
	color: var(--text-blue);
	margin: 0 0 3px;
}

.fixed__button {
	display: none;
	background: #FDFDFD;
	padding: 16px 20px;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 500;
}

.fixed__button div {
	max-width: 540px;
	margin: 0 auto;
}

.inr-sorbe-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

  


/* ----right-site---- */

.right-site .aside-box {
	position: sticky;
	top: 20px;
}