/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Statistics
- Introduction
- Details 1
- Services
- Details 2
- Invitation
- Projects
- Testimonials
- Contact
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #f9fafe
- Headings text - black #2d2d2d
- Body text - dark gray #6c717b
- Buttons, icons - blue #eb9180
- Buttons, icons, bullets - red #eb9180
******************************************/


/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
	font-size: 18px;
}

body, p {
	color: #6c717b; 
	font: 400 1rem/1.625rem "Urbanist", sans-serif;
}

h1 {
	color: #2d2d2d;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 3.25rem;
	letter-spacing: -0.4px;
}

h2 {
	color: #2d2d2d;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.5rem;
	letter-spacing: -0.2px;
	display: block;
}

h3 {
	color: #2d2d2d;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.2px;
    padding-bottom: 2rem;
}

h4 {
	color: #2d2d2d;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2rem;
}

h5 {
	color: #2d2d2d;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.625rem;
}

h6 {
	color: #2d2d2d;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.375rem;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #6c717b;
	text-decoration: underline;
}

a:hover {
	color: #6c717b;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.blue {
	color: #eb9180;
}

.bg-gray {
	background-color: #f9fafe;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #eb9180;
	border-radius: 30px;
	background-color: #eb9180;
	color: #f4f3f2;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #eb9180; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #eb9180;
	border-radius: 30px;
	background-color: #eb9180;
	color: #f4f3f2;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #eb9180; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #eb9180;
	border-radius: 30px;
	background-color: transparent;
	color: #eb9180;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #eb9180;
	color: #f4f3f2;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #eb9180;
	border-radius: 30px;
	background-color: transparent;
	color: #eb9180;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #eb9180;
	color: #f4f3f2;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #eb9180;
	border-radius: 30px;
	background-color: transparent;
	color: #eb9180;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #eb9180;
	color: #f4f3f2;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-control-input,
.form-control-textarea {
	width: 100%;
	padding-top: 0.875rem;
	padding-bottom: 0.875rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	border-radius: 30px;
	background-color: #f4f3f2;
	font-size: 0.875rem;
	line-height: 1.5rem;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-textarea {
	display: block;
	height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
}

.form-control-input:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #eb9180;
	border-radius: 30px;
	background-color: #eb9180;
	color: #f4f3f2;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #eb9180;
	background-color: transparent;
	color: #eb9180;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #f4f3f2;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 141px;
	height: 46px;
}

.navbar .logo-text {
	color: #2d2d2d;
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #f4f3f2;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #2d2d2d;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 0.8rem;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #657cf9;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	border: none;
	background-color: #f4f3f2;
}

.navbar .dropdown-item {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #2d2d2d;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #f4f3f2;
	color: #eb9180;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #efefef;
}
/* end of dropdown menu */

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/*****************/
/*    Header     */
/*****************/
.header {
	position: relative;
	overflow: hidden;
	padding-top: 8rem;
	padding-bottom: 8em;
	background-color: #2d2d2d;
	background-size: cover;
	background-position: center;
	text-align: center;
}

.header .decoration-star {
	position: absolute;
	top: 80px;
	left: -100px;
	width: 200px;
	opacity: 0.7;
}

.header .decoration-star-2 {
	position: absolute;
	top: 80px;
	right: -100px;
	width: 200px;
	opacity: 0.7;
}

.header div[class*="col"] {  
	/* selects all elements which have classes starting with col */
	/* needed so that the absolute positioned decoration stays behind */
	position: relative;
}

.header h1{
	color: #f4f3f2;
    text-shadow: 0px 4px 0px #00000038;
}

.header .h1-large {
	margin-bottom: 1.75rem;
	font-size: 3rem;
	line-height: 3.5rem;
}

.header .p-large {
	font-size: 1.3rem;
	margin-bottom: 2.25rem;
    color: #f4f3f2;
    text-shadow: 0px 2px 0px #0000008c;
}

.header .btn-solid-lg,
.header .btn-outline-lg {
	margin-right: 0.25rem;
	margin-bottom: 1.25rem;
	margin-left: 0.25rem;
}

.header .image-container {
	margin-top: 5rem;
}


/**********************/
/*     Statistics     */
/**********************/
.counter {
	padding-top: 4.5rem;
	padding-bottom: 5.5rem;
	text-align: center;
}

.counter .counter-cell {
	margin-bottom: 4rem;
}

.counter .purecounter {
	margin-bottom: 1.5rem;
	color: #2d2d2d;
	font-weight: 400;
	font-size: 4rem;
	line-height: 2rem;
}

.counter .counter-info {
	color: #6d717a;
	font-size: 0.875rem;
	line-height: 1.5rem;
}


/************************/
/*     Introduction     */
/************************/
.basic-1 {
	padding-top: 9.25rem;
	padding-bottom: 8.75rem;
}

.basic-1 h2 {
	margin-bottom: 1.75rem;
}


/*********************/
/*     Details 1     */
/*********************/
.basic-2 {
	position: relative;
	padding-top: 9.5rem;
	padding-bottom: 9.5rem;
}

.basic-2 .decoration-star {
	position: absolute;
	top: 530px;
	left: -100px;
	width: 200px;
	opacity: 0.7;
}

.basic-2 div[class*="col"] {  
	/* selects all elements which have classes starting with col */
	/* needed so that the absolute positioned decoration stays behind */
	position: relative;
}

.basic-2 .image-container {
	margin-bottom: 5rem;
}

.basic-2 h2 {
	margin-bottom: 1.875rem;
}

.basic-2 .list-unstyled {
	margin-bottom: 2rem;
}

.basic-2 .list-unstyled .fas {
	color: #eb9180;
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.basic-2 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}


/********************/
/*     Services     */
/********************/
.cards-1 {
	padding-top: 9.5rem;
	padding-bottom: 5.5rem;
}

.cards-1 h2 {
	margin-bottom: 1.75rem;
}

.cards-1 .text-container {
	margin-bottom: 5rem;
}

.cards-1 .list-unstyled {
	margin-top: 1.5rem;
}

.cards-1 .list-unstyled .fas {
	color: #eb9180;
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.cards-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.cards-1 .card-container {
	text-align: center;
}

.cards-1 .card {
	display: inline-block;
	margin-right: 1.5rem;
	margin-bottom: 3.75rem;
	margin-left: 1.5rem;
	width: 250px;
	border: none;
	background-color: transparent;
	text-align: center;
	vertical-align: top;
}

.cards-1 .card-icon {
	width: 90px;
	height: 90px;
	margin-right: auto;
	margin-bottom: 1.5rem;
	margin-left: auto;
	border-radius: 50%;
	text-align: center;
}

.cards-1 .card-icon .far,
.cards-1 .card-icon .fas {
	color: #eb9180;
	font-size: 3.75rem;
}

.cards-1 .card-icon img{
	width: 100%;
}

.cards-1 .card-body {
	padding: 0;
}

.cards-1 .card-title {
	font-weight: 600;
}


/*********************/
/*     Details 2     */
/*********************/
.basic-3 {
	position: relative;
	overflow: hidden;
	padding-top: 9.5rem;
	padding-bottom: 9.75rem;
}

.basic-3 .decoration-star {
	position: absolute;
	top: 500px;
	right: -100px;
	width: 200px;
	opacity: 0.7;
}

.basic-3 div[class*="col"] {  
	/* selects all elements which have classes starting with col */
	/* needed so that the absolute positioned decoration stays behind */
	position: relative;
}

.basic-3 .text-container {
	margin-bottom: 5rem;
}

.basic-3 h2 {
	margin-bottom: 1.875rem;
}

.basic-3 p {
	margin-bottom: 2rem;
}


/**********************/
/*     Invitation     */
/**********************/
.basic-4 {
	padding-top: 9.25rem;
	padding-bottom: 9.75rem;
	text-align: center;
}

.basic-4 h4 {
	margin-bottom: 2rem;
}


/********************/
/*     Projects     */
/********************/
.cards-2 {
	padding-top: 9.5rem;
	padding-bottom: 5rem;
}

.cards-2 .h2-heading {
	margin-bottom: 3.75rem;
	text-align: center;
}

.cards-2 .card {
	max-width: 350px;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
	border: none;
}

.cards-2 .card img {
	margin-bottom: 2rem;
	border-radius: 10px;
}

.cards-2 .card-body {
	padding: 0;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	position: relative;
	padding-top: 13rem;
	padding-bottom: 13rem;
}

.slider-1 .quotes-decoration {
	position: absolute;
	top: 0;
	left: 15px;
	width: 500px;
	opacity: 0.2;
}

.slider-1 .slider-container {
	position: relative;
}


.slider-1 .testimonial-image {
	width: 120px;
	height: 120px;
	margin-bottom: 2.25rem;
	border-radius: 50%;
}

.slider-1 .testimonial-text {
	margin-bottom: 1.75rem;
	font-size: 1.25rem;
	line-height: 2rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0.25rem;
	color: #2b2b4f;
}


/*******************/
/*     Contact     */
/*******************/
.form-1 {
	position: relative;
	overflow: hidden;
	padding-top: 9.5rem;
	padding-bottom: 8.75rem;
	text-align: center;
	display: block;
}

.form-1 .decoration-star {
	position: absolute;
	top: 600px;
	left: -100px;
	width: 200px;
	opacity: 0.7;
}

.form-1 .decoration-star-2 {
	position: absolute;
	top: 600px;
	right: -100px;
	width: 200px;
	opacity: 0.7;
}

.form-1 div[class*="col"] {  
	/* selects all elements which have classes starting with col */
	/* needed so that the absolute positioned decoration stays behind */
	position: relative;
}

.form-1 .image-container {
	margin-bottom: 5rem;
}

.form-1 h2 {
	margin-bottom: 2.5rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 6.5rem;
	padding-bottom: 2rem;
}

.footer a {
	text-decoration: none;
}

.footer .footer-col {
	margin-bottom: 3rem;
}

.footer h6 {
	margin-bottom: 0.625rem;
	color: #6c717b;
	opacity: 0.9;
}

.footer p,
.footer a,
.footer ul {
	opacity: 0.9;
}

.footer .li-space-lg li {
	margin-bottom: 0.375rem;
}

.footer .footer-col.third .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.2rem;
}

.footer .footer-col.third .fa-stack .fa-stack-2x {
	color: #f4f3f2;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack .fa-stack-1x {
	color: #eb9180;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
	color: #eb9180;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
	color: #f4f3f2;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-bottom: 1rem;
	text-align: center;
	opacity: 0.9;
}

.copyright p,
.copyright a {
	text-decoration: none;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	position: fixed; 
  	z-index: 99; 
	bottom: 20px; 
	left: 20px; 
	display: none; 
	width: 52px;
	height: 52px;
	border: none; 
	border-radius: 50%; 
	outline: none; 
	background-color: #44434a; 
	cursor: pointer; 
}

#myBtn:hover {
	background-color: #1d1d21;
}

#myBtn img {
	margin-bottom: 0.25rem;
	width: 1rem;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
}

.ex-basic-1 .list-unstyled .fas {
	color: #eb9180;
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f9fafe;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #eb9180;
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #f4f3f2;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}



.customintro1{
	display: block;
	background: url(../images/fondocierrepresta.jpg);
	background-position: center;
	background-size: cover;
	padding-top: 14rem;
	padding-bottom: 14rem;
}

.customintro1 h4{
	color: #FFFFFF;
	text-shadow: 0px 6px 20px black;
}


.customintroreg1{
	display: block;
	background: url(../images/fondoregistroinversionistas.jpg);
	background-position: center;
	background-size: cover;
	padding-top: 14rem;
	padding-bottom: 14rem;
}

.customintroreg1 h4{
	color: #FFFFFF;
	text-shadow: 0px 6px 20px black;
}

.iconstats{
	padding-top: 0.5rem;
	font-size: 2rem;
	color: #eb9180;
}

.mitadcolor1{
	display: block;
}

.mitadcolor1.basic-2{
	margin: 0;
	padding: 0;
}

.mitadcolor1 .container{
	max-width: 100%;
}

.mitadcolor1 .container .col-lg-6.col-xl-5{
	background-color: #5A73E5;
}


.mitadcolor1 .image-container{
	padding: 5rem 0;
	text-align: center;
}

.mitadcolor1 .image-container img{
	display: inline-block;
}

.mitadcolor1 .container .col-lg-6.col-xl-7{
	padding: 4rem 2rem;
	background: #f4f3f2;
}

.mitadcolor1.basic-2 .image-container{
	margin-bottom: 0;
}




.basic-4.quienessomosfondo{
	background-image: url('/images/quienesomosfondo.jpg');
	background-position: center;
	background-size: cover;
	padding: 15rem 0;
	color: #f4f3f2;
}

.basic-4.quienessomosfondo h2{
	color: #f4f3f2;
	padding-bottom: 1rem;
}

.basic-4.quienessomosfondo p{
	color: #f4f3f2;
	max-width: 25rem;
	margin: 0 auto;
}

#quienessomos p{
	max-width: 25rem;
	margin: 0 auto;
}

#comopuedosolicitarunprestamo .fondo{
	background: url(/images/ComoSolicitarPrestamo1.jpg);
	background-position: center;
	background-size: cover;
	padding: 10rem 0;
}



#comorealizomispagosfondo .fondo{
	background: url(/images/ComoSolicitarPrestamo1.jpg);
	background-position: center;
	background-size: cover;
	padding: 10rem 0;
}

.barrafondo{
	background-image: url('/images/compagoprestamo.jpg');
	background-position: center;
	background-size: cover;
	padding: 15rem 0;
	color: #f4f3f2;
}

.barrafondo.pdd1{
	padding: 10rem 0;
}

.barrafondo h2, .barrafondo h3, .barrafondo h4{
	color: #f4f3f2;
	padding-bottom: 1rem;
}

.barrafondo p{
	color: #f4f3f2;
	max-width: 25rem;
	margin: 0 auto;
}

.modrealizarpagos{
	background: #f9fafe;
}

.sintextshadow{
	text-shadow: none !important;
}

.modrealizarpagos .col-lg-6 p{
	font-size: 1rem;
	max-width: 20rem;
	margin: 0 auto
}


.modrealizarpagos .parrafosolo{
	padding-top: 4rem;
	max-width: 30rem;
	margin: 0 auto;
}


#registrarse h4{
	max-width: 25rem;
}


#comofunciona{
    display: block;
	background-color: #ffffff;
    padding: 0 0;
	
	/* background-image: url(/images/fondoquienessomosadicionaltransparente.jpg);
	background-position: center;
    background-size: cover; */
}

#comofunciona .swiper{
	padding: 0;
}

.conteswiperbloque{
	border: 1px solid #cdcdcd;
    padding: 2rem 2rem;
    border-radius: 1rem;
	text-align: left;
	background-color: #ffffff;
	display: block;
	font-size: 1rem;
	max-width: 30rem;
	min-height: 20rem;
}

.conteswiperbloque h4{
	padding-bottom: 1rem;
	min-height: 6rem;
}

.conteswiperbloque .scroleable{
	display: block;
	height: 15rem;
	overflow-y: auto;
}

.swiper-gif{
	position: absolute;
	top: 0rem;
	left: calc(50% - 2rem);
	z-index: 99;
	width: 4rem;
	opacity: 0.3;
}


.swiper {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 6rem 0rem 4rem 0rem;
  }

  .swiper-slide {
	text-align: center;
	font-size: 1rem;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
  }

  .mySwiper-pagination{
	width: 100%;
	margin-top: 2rem;
	text-align: center;
  }

  .mySwiper-pagination .swiper-pagination-bullet{
	margin: 0 0.4rem;
  }


  #pasos{
	padding: 10rem 0;
	background-color: #f9fafe;
	font-size: 1rem;
  }


  #pasos h2{
	text-align: center;
  }

.div5050{
	display: block;
	text-align: center;
	margin-bottom: 2rem;
}

.div5050 > div{
	text-align: left;
	display: inline-block;
	width: 49%;
}

.div5050 > div{
	text-align: left;
	display: inline-block;
	width: 49%;
}

.div5050.center > div{
	text-align: center;
}

.div5050 > div > .reducido{
	max-width: 17rem;
    display: inline-block;
}


.bloque_comofunciona_01{
	display: block;
	width: 100%;
	font-size: 1rem;
}

.barrafondoquienessomos_depo{
	background-image: url('/images/dondehagoeldepositoinvertir.jpg');
	background-position: center;
	background-size: cover;
	padding: 15rem 0;
	color: #f4f3f2;
	min-width: 80%;
	margin: 0;
	margin-bottom: 5rem;
}

.bloque_comofunciona_01 .barrafondoquienessomos{
	background-image: url('/images/quienesomosfondo.jpg');
	background-position: center;
	background-size: cover;
	padding: 28rem 0;
	color: #f4f3f2;
	min-width: 80%;
	margin: 0;
	text-align: left;
}

.bloquecentralnuevo{
	font-size: 2rem;
	max-width: 30rem;
	margin-left: 50%;
	padding-right: 1rem;
	text-shadow: 0px 0px 7px black;
	color: #FFFFFF;
}




.swiper .barrascutosnavigate-right{
    color: #eb9180;
    position: absolute;
    right: 1rem;
	margin-top: -2rem;
    top: 50%;
	cursor: pointer;
	z-index: 999;
}

.swiper .barrascutosnavigate-right img{
	height: 5rem;
	width: 5rem;
}

.swiper .barrascutosnavigate-left{
    color: #eb9180;
    position: absolute;
    left: 1rem;
	margin-top: -2rem;
    top: 50%;
	cursor: pointer;
	z-index: 999;
}

.swiper .barrascutosnavigate-left img{
	height: 5rem;
	width: 5rem;
}

.bloque_comofunciona_fullfondo h3{
	font-size: 2.5rem;
}

.bloque_comofunciona_fullfondo li{
	font-size: 1.2rem;
}

.bloque_comofunciona_reducido h3{
	font-size: 2.5rem;
}


.bloque_comofunciona_fullfondo{
	display: block;
	width: 100%;
	font-size: 1rem;
}

.bloque_comofunciona_fullfondo .fondofullfondo{
	background-color: #1d1d21;
	background-position: center;
	background-size: cover;
	padding: 20rem 0;
	color: #f4f3f2;
	width: 100%;
	margin: 0;
	text-align: left;
}

.bloque_comofunciona_fullfondo .fondofullfondo ul{
	font-size: 1rem;
}

.bloque_comofunciona_fullfondo .contenidofullfondo{
	font-size: 2rem;
	max-width: 30rem;
	margin-left: 60%;
	padding-right: 1rem;
	text-shadow: 0px 2px 0px #00000069;
	color: #FFFFFF;
}

.bloque_comofunciona_fullfondo .contenidofullfondo *{
	color: #FFFFFF;
}

.bloque_comofunciona_fullfondo p{
	font-size: 1.3rem;
}

.bloque_comofunciona_fullfondo .contenidofullfondo ul{
	color: #FFFFFF;
	font-size: 1rem;
}


.bloque_comofunciona_reducido{
	display: block;
	width: 100%;
	font-size: 1rem;
	padding: 0;
	padding: 12rem 0;
}

.bloque_comofunciona_reducido .contenuevodise{
	max-width: 80rem;
	text-align: left;
	margin: 0 auto;
	font-size: 0rem;
}

.bloque_comofunciona_reducido .contenuevodise-50{
	font-size: 1rem;
	width: 50%;
	display: inline-block;
	vertical-align: middle;
}

.bloque_comofunciona_reducido .contenuevodise-fondo{
	padding: 5rem 1rem;
}

.bloque_comofunciona_reducido .contenuevodise-fondo img{
	display: block;
	height: 100%;
	width: 100%;
	border-radius: 1rem;
}

.bloque_comofunciona_reducido .contenuevodise-conte{
	padding: 1rem;
	padding-left: 5rem;
}

#pasos .swiper-gif{ display: none; }



/* MEDIO QUERY MOBILE */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
@media (max-width: 768px) {

	.bloquecentralnuevo{
		margin: 0 auto;
		padding: 1rem
	}


	#pasos .swiper-pagination{ display: none; }
	#pasos .swiper-button-next{ display: none; }
	#pasos .swiper-button-prev{ display: none; }
	#pasos .swiper-gif{ display: block; }

	.bloque_comofunciona_reducido{
		padding: 0;
	}

	.bloque_comofunciona_fullfondo h3{
		font-size: 2.5rem;

	}

	.bloque_comofunciona_reducido h3{
		font-size: 2.5rem;
	}
	
	.bloque_comofunciona_reducido .contenuevodise-50{
		width: 100%;
	}

	.bloque_comofunciona_reducido .contenuevodise-fondo{
		padding: 0rem;
		margin-bottom: 2rem;
	}
	.bloque_comofunciona_reducido .contenuevodise-fondo img{
		display: none;
	}

	.bloque_comofunciona_reducido .contenuevodise-conte{
		padding: 1rem;
		padding-top: 4rem;
	}

	.swiper .barrascutosnavigate-right{
		top: 50%;
		right: 0.1rem;
	}
	.swiper .barrascutosnavigate-left{
		top: 50%;
		left: 0.1rem;
	}

	.swiper .barrascutosnavigate-right img, .swiper .barrascutosnavigate-left img{
		height: 2rem;
		width: 2rem;
	}
	

	.bloque_comofunciona_fullfondo .contenidofullfondo{
		margin-left: 0;
		padding: 3rem;
		min-height: 28rem;
		text-align: left;
		margin: 0;
	}

	.bloque_comofunciona_fullfondo .fondofullfondo{
		padding: 5rem 0;
	}
	
}


/*************************/
/*     Media Queries     */
/*************************/	
/* Min-width 768px */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
@media (min-width: 768px) {


	p, ul, .div5050 > div > .reducido{
		font-size: 1rem;
	}

	/* Header */
	.header {
		padding-top: 11rem;
		padding-bottom: 5em;
	}

	.header .decoration-star {
		top: 100px;
		left: -150px;
		width: 300px;
	}

	
	.header .decoration-star-2 {
		top: 140px;
		right: -200px;
		width: 400px;
	}
	/* end of header */


	/* Statistics */
	.counter .counter-cell {
		display: inline-block;
		margin-right: 1.5rem;
		margin-left: 1.5rem;
		vertical-align: top;
	}
	/* end of statistics */


	/* Services */
	.cards-1 .card {
		margin-right: 2rem;
		margin-left: 2rem;
	}
	/* end of services */


	/* Contact */
	.form-1 .decoration-star {
		left: -150px;
		width: 300px;
	}
	
	.form-1 .decoration-star-2 {
		right: -200px;
		width: 400px;
	}
	/* end of contact */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */
}
/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {
	
	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Navigation */
	.navbar {
		padding-top: 1.2rem;
		padding-bottom: 1.2rem;
		background-color: #f4f3f2;
		box-shadow: none;
		transition: all 0.2s;
	}

	

	.navbar.extra-page {
		padding-top: 0.5rem;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: #f4f3f2;
		box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.navbar .nav-item .nav-link {
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.navbar .dropdown-menu {
		padding-top: 1rem;
		padding-bottom: 1rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .nav-item .btn-outline-sm {
		margin-top: 0;
		margin-left: 1rem;
	}
	/* end of navigation */


	/* Header */
	.header {
		text-align: left;
	}

	.header .text-container {
		margin-top: 4rem;
	}

	.header .image-container {
		margin-top: 0;
	}

	.header .btn-solid-lg,
	.header .btn-outline-lg {
		margin-right: 0;
		margin-left: 0;
	}
	
	.header .btn-solid-lg {
		margin-right: 0.5rem;
	}
	/* end of header */


	/* Statistics */
	.counter .purecounter {
		font-size: 6rem;
		line-height: 4rem;
	}
	/* end of statistics */


	/* Introduction */
	.basic-1 h2 {
		width: 90%;
	}
	/* end of introduction */


	/* Details 1 */
	.basic-2 .decoration-star {
		top: 260px;
		left: -150px;
		width: 300px;
	}

	.basic-2 .image-container {
		margin-bottom: 0;
	}
	/* end of details 1 */


	/* Services */
	.cards-1 .text-container {
		margin-bottom: 0;
	}
	/* end of services */


	/* Details 2 */
	.basic-3 .decoration-star {
		top: 260px;
		right: -150px;
		width: 300px;
	}

	.basic-3 .image-container {
		text-align: right;
	}
	/* end of details 2 */


	/* Invitation */
	.basic-4 h4 {
		width: 48rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of invitation */


	/* Projects */
	.cards-2 .card {
		display: inline-block;
		width: 292px;
		max-width: 100%;
		vertical-align: top;
	}
	
	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 1.5rem;
		margin-left: 1.5rem;
	}
	/* end of projects */


	/* Contact */
	.form-1 {
		text-align: left;
	}

	.form-1 .decoration-star {
		top: 260px;
	}
	
	.form-1 .decoration-star-2 {
		top: 240px;
	}

	.form-1 .image-container {
		margin-bottom: 0;
	}
	/* end of contact */


	/* Footer */
	.footer .footer-col {
		margin-bottom: 2rem;
	}

	.footer .footer-col.first {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}
	
	.footer .footer-col.second {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}
	
	.footer .footer-col.third {
		display: inline-block;
		width: 224px;
		text-align: right;
		vertical-align: top;
	}

	.footer .footer-col.third .fa-stack {
		margin-right: 0;
		margin-left: 0.375rem;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of extra pages */
}
/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {
	
	/* General Styles */
	.container {
		max-width: 1140px;
	}
	/* end of general styles */
	

	/* Header */
	.header {
		padding-top: 12rem;
		padding-bottom: 12rem;
	}

	.header .text-container {
		margin-top: 6.5rem;
	}

	.header .decoration-star {
		top: 200px;
		left: -200px;
		width: 500px;
	}
	
	.header .decoration-star-2 {
		top: 150px;
		right: -200px;
		width: 600px;
	}

	.header .h1-large {
		font-size: 4.25rem;
		line-height: 4.875rem;
	}

	.header .image-container {
		text-align: right;
	}
	/* end of header */


	/* Statistics */
	.counter .counter-cell {
		margin-right: 3.5rem;
		margin-left: 3.5rem;
		width: 180px;
	}
	
	.counter .counter-cell:first-of-type {
		margin-left: 0;
	}

	.counter .counter-cell:last-of-type {
		margin-right: 0;
	}

	.counter .purecounter {
		font-size: 6.75rem;
		line-height: 4.5rem;
	}
	/* end of statistics */


	/* Details 1 */
	.basic-2 .decoration-star {
		top: 140px;
		left: -200px;
		width: 500px;
	}

	.basic-2 .text-container {
		margin-top: 5rem;
		margin-left: 2.5rem;
	}

	.basic-2 h2 {
		width: 90%;
	}
	/* end of details 1 */


	/* Services */
	.cards-1 .text-container {
		margin-top: 2rem;
		margin-right: 4.75rem;
	}

	.cards-1 .card {
		margin-right: 2.25rem;
		margin-left: 2.25rem;
	}

	.cards-1 .card:nth-of-type(3n+1) {
		margin-left: 0;
	}
	
	.cards-1 .card:nth-of-type(3n+3) {
		margin-right: 0;
	}
	/* end of services */


	/* Details 2 */
	.basic-3 .decoration-star {
		top: 140px;
		right: -200px;
		width: 500px;
	}

	.basic-3 .text-container {
		margin-top: 6rem;
		margin-right: 3rem;
	}

	.basic-3 h2 {
		width: 95%;
	}
	/* end of details 2 */


	/* Projects */
	.cards-2 .card {
		width: 350px;
	}

	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 1.625rem;
		margin-left: 1.625rem;
	}
	/* end of projects */


	/* Testimonials */
	.slider-1 .quotes-decoration {
		left: 170px;
		width: 500px;
	}

	.slider-1 .slider-container {
		width: 82%;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of testimonials */


	/* Contact */
	.form-1 .decoration-star {
		top: 140px;
		left: -300px;
		width: 600px;
	}
	
	.form-1 .decoration-star-2 {
		top: 140px;
		right: -300px;
		width: 600px;
	}

	.form-1 .text-container {
		margin-left: 2.5rem;
	}

	.form-1 h2 {
		width: 82%;
	}
	/* end of contact */


	/* Footer */
	.footer .footer-col.first {
		width: 352px;
		margin-right: 5rem;
	}
	
	.footer .footer-col.second {
		margin-right: 6.5rem;
	}
	
	.footer .footer-col.third {
		text-align: right;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	/* end of extra pages */
}
/* end of min-width 1200px */




/*****************/
/*    Header Blog     */
/*****************/
.headerblog {
	position: relative;
	overflow: hidden;
	padding-top: 8rem;
	padding-bottom: 8em;
	background-color: #5A73E5;
	background-size: cover;
	background-position: center;
	text-align: center;
	margin-bottom: 4rem;
	margin-top: 5rem;
}

.headerblog div[class*="col"] {  
	/* selects all elements which have classes starting with col */
	/* needed so that the absolute positioned decoration stays behind */
	position: relative;
}

.headerblog h1{
	color: #f4f3f2;
    text-shadow: 0px 4px 0px #00000038;
}

.headerblog .h1-large {
	margin-bottom: 1.75rem;
	font-size: 3rem;
	line-height: 3.5rem;
}

.headerblog .p-large {
	font-size: 1.3rem;
	margin-bottom: 2.25rem;
    color: #f4f3f2;
    text-shadow: 0px 2px 0px #0000008c;
}

.headerblog .btn-solid-lg,
.headerblog .btn-outline-lg {
	margin-right: 0.25rem;
	margin-bottom: 1.25rem;
	margin-left: 0.25rem;
}

.headerblog .image-container {
	margin-top: 5rem;
}




@media (max-width: 1300px) {
	.navbar .container {
		flex-direction: column;
	}
}



@media (max-width: 992px) {
	.navbar .container {
		flex-direction: row;
	}
}