.justificado {
	text-align: justify !important;
}
.nolinkwhite {
	color: #ffffff !important;
}

.nolink {
	color: #000000 !important;
}

:root {
  --cnvs-body-font: 'Source Sans Pro', sans-serif;
  --cnvs-primary-font: 'Roboto', sans-serif;
}

.button2 {
 --cnvs-btn-color: #f3b631 !important;
 --cnvs-btn-color-hover: var(--cnvs-btn-color-dark);
}

.heading-block h2 {
	font-size: 52px;
	line-height: 1.3;
	font-weight: 900;
	letter-spacing: -1px;
}

.heading-block h3 {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
}

p span {
	color: #6dad3a !important;
}
.justificado {
	text-align: justify !important;
}
.mayusculas {
	text-transform: uppercase !important;
}
:root {

	--cnvs-section-about-bg: 		url('images/dots-1.png');
	--cnvs-section-features-bg: 	url('images/bg-3.svg');
}
.circle-border {
	position: relative;
	margin-top: 25px;
	margin-left: 25px;
	border: 2px solid rgba(12, 28, 204, .05);
	border-radius: 50%;
	height: 250px;
	width: 250px;
}

.feature-content {
	position: absolute;
	top: -25px;
	left: -25px;
	width: 300px;
	height: 300px;
}

.circle-inner {
	border-radius: 50%;
	min-width: 80px;
	min-height: 80px;
	padding: 4px;
	background: #FFF;
	box-shadow: 0 0 35px rgba(140, 152, 164, 0.2);
	text-align: center;
	line-height: 1;
	box-sizing: content-box;
	white-space: nowrap;
}

.circle-inner::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	padding-top: 100%;
	height: 0;
}

.circle-inner > div {
	display: inline-block;
	vertical-align: middle;
}

.counter { font-size: 20px; }
.counter + h5 { font-size: 12px; }

@media (min-width: 992px) {


.circle-border {
		height: 400px;
		width: 400px;
	}

	.feature-content {
		top: -50px;
		left: -50px;
		width: 500px;
		height: 500px;
	}

	.circle-inner {
		min-width: 100px;
		min-height: 100px;
		padding: 10px;
	}

	.counter { font-size: 28px; }
	.counter + h5 { font-size: 13px; }

	.section-about::before {
	    content: '';
	    position: absolute;
	    bottom: 0;
	    left: 0;
		background-color: transparent;
	    background-image: var(--cnvs-section-about-bg);
		background-repeat: no-repeat;
		background-position: top right;
	    transform:  rotate(-180deg);
	    background-size: 40%;
	    width: 100%;
	    height: 100%;
	    z-index: 1;
	}

	.dark .section-about::before {
		opacity: 1;
		background: var(--bs-dark);
	}


}

.dark .circle-inner {
	background: var(--bs-light);
	box-shadow: none;
}

.dark .circle-border { border-color: rgba(255, 255, 255, 0.1); }

.testimonials-carousel .owl-item {
	opacity: 0.25;
	transform: scale(.9);
	-webkit-transition: all .5s linear;
	-o-transition: all .5s linear;
	transition: all .5s linear;
}

.testimonials-carousel .owl-item.active.center {
	opacity: 1;
	transform: scale(1);
}

.nolink {
	color: #000000 !important;
}

.faq {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}