.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

html {
    scroll-behavior: smooth;
}
body, html {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
    font-style: normal;
    background: #ffffff;
}
a {
 color: #DBB650;
    transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
a:hover {
    text-decoration: none;
    color: #7a541b;

}
.btn.btn-primary {
    background: rgba(219, 182, 80, 0);
    color: #DBB650;
    border: 1px solid #DBB650;
    border-radius: 0;

}
.btn.btn-primary:hover {
    background: rgba(219, 182, 80, 1);
    color: #fff;

}
.bold {
    font-weight: 700;
}
.secondarytext {
    background: #c0c0c0;
 }
 .sep {
    padding: 5rem 0;
 }
 ul {
    margin-bottom: 0;
 }
 .mdpad{
    padding: 0;
 }
/*fin de general*/
/*header*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    z-index: 4;
    background: rgba(255, 255, 255, 0);
       transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
header.scrolled {
    background: rgba(255, 255, 255, 1);
}
.menumobile {
    text-align: right;
    z-index: 2;
}
.menudesk {
    text-align: right;
}
.menudesk .list-inline-item:not(:last-child) {
    margin-right: 0;
}
.menudesk ul {
    margin-bottom: 0;
}
.menudesk ul li a {
    padding: 7px;
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #DBB650;
    transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;

}
header.scrolled .menudesk ul li a {
    color: #000;
}
.logosvg * {
  fill: #fff !important;
}
header.scrolled .logosvg * {
  fill: #DBB650 !important;
}
.logo {
    width: 100%;
}
.menudesk ul li a:hover {
    text-decoration: none;
    color: #DBB650;
    
}
.headerbuttons ul li a.access {
    background: rgba(219, 182, 80, 0);
    color: #DBB650;
    padding: 7px 26px;
    margin-left: 0.2rem;
    border: 1px solid #DBB650;
        transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;

}
.headerbuttons ul li a.access:hover{
    background: rgba(219, 182, 80, 1);
    color: #fff;
    border: 1px solid #DBB650;
}
.headerbuttons ul li a.register {
    background: rgba(219, 182, 80, 1);
    color: #fff;
    padding: 7px 26px;
    margin-left: 0.5rem;
    border: 1px solid #fff;
        transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;

}
.headerbuttons ul li a.register:hover{
    background: rgba(219, 182, 80, 1);
    color: #fff;
    border: 1px solid #DBB650;
}
header.scrolled {
    color: #000;
}
header.scrolled .headerbuttons ul li a.access {
    background: rgba(219, 182, 80, 0); 
    color: #DBB650;
    border: 1px solid #DBB650;
}
header.scrolled .headerbuttons ul li a.access:hover{
    background: rgba(219, 182, 80, 1);
    color: #fff;
}
header.scrolled .headerbuttons ul li a.register {
    background: rgba(219, 182, 80, 1);
    color: #fff;
    border: 1px solid #DBB650;
}
header.scrolled .headerbuttons ul li a.register:hover{
    background: rgba(219, 182, 80, 0);
    color: #DBB650;
}
.hamburguer {
    align-items: center;
    width: 26px;
    height: 30px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    text-align: right;
    cursor: pointer;
    z-index: 10;
}
.hamburguer span {
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	width: 100%;
	height: 2px;
	margin: 7px 0;
	background: #DBB650;
	display: block;
}
header.scrolled .hamburguer {
    z-index: 2;
}
header.scrolled .hamburguer span {
    background: #262626!important;
}
.hamburguer span:first-child {
	margin-top: 5px;
}

.hamburguer:hover span:nth-child(2) {
	width: 50%;
}
.hamburguer.toggled span:first-child {
	transform: rotate(45deg);
    top: 8px;
    position: relative;

}
.hamburguer.toggled span:last-child {
	transform: rotate(-45deg);
    top: -10px;
    position: relative;

}
.hamburguer.toggled span:nth-child(2) {
	width: 0;
}
.mobileboxmenu {
    position: fixed;
    width: 100%;
    right: -100%;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    height: 100%;
    padding-top: 75px;
    background: #172635;
    min-height: 500px;
    overflow-y: scroll;
    z-index: 3;
    align-items: center;
    display: flex;
    justify-content: center;
    padding-bottom: 45px;
}
.mobileboxmenu ul {
    align-items: center;
    justify-content: center;
    padding: 0 0 40px;
}
.mobileboxmenu ul li {
    list-style: none;
    text-align: center;
    
}
.mobileboxmenu ul li a {
    display: block;
    width: 100%;
    text-transform: uppercase;
    padding: 10px;
    color: #fff;
}
.mobileboxmenu ul li a:hover {
    color: #d4ae57;
}
.mobileboxmenu.opened {
    right: 0;
    overflow: hidden;
}
.direccion {
    padding: 10px;
    text-align: center;
}
.bottomdown {
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}
.bottomdown a {
    color: #fff;
}
.bottomdown a.callme {
    background-color: #0097d4;
    width: 100%;
    padding: 10px 0;
    color: #fff;
    display: block;
    text-align: center;
    font-size: 1rem;

}
.bottomdown a i {
    margin-right: 10px;
}
/*fin de header*/
/*carousel*/


.registerform {
    background-size: cover;
    background-image: url(../images/fndo.jpg);
  min-height: 582px;
    color: #fff;
    overflow: hidden;

    height: 80vh;
}
.carousel-item img {
    width: 100%;
   
}

/*.carousel::before {
    content: "";
    background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    left: 0px;
    top: 0px;
    height: 40%;
    width: 100%;
    z-index: 1;
  
}*/
.carousel {
    overflow: hidden;
}
ul.features li {

}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 50px;
    height: 50px;
    display: flex;  

    font-size: 2rem;
    color: #000;
   
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}
.registerform h1 {
margin-bottom: 40px;
font-weight: 700;
text-transform: uppercase;
}

.registerform h1 span {
  display: inline-block;
  color: #DBB650;
  transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    animation: aparece-izquierda 2s 1;
    animation-fill-mode: forwards;
}
@keyframes aparece-izquierda {
    from {
        transform: translateX(-20px);
    }
    to {
       transform: translateX(0px); 
    }
}
.palabras::after {
  content: 'Rápidas';
  animation: cambiarPalabras 2s infinite;
}

@keyframes cambiarPalabras {
  0% { content: 'Rápidas'; }
  33% { content: 'seguras'; }
  66% { content: 'Automática'; }
  100% { content: 'Rápido'; }
}

.registerform ul {
    padding-left: 0;
}
.registerform ul li {
    list-style-type: none;
    text-transform: capitalize;

}
.registerform ul li i {
    color: #d4ae57;
}
.registerform h3 {
    font-size: 1.2em;
    font-weight: 700;
}
.registro {
background: linear-gradient(45deg, #7a541b , #d4ae57 , #d4ae57, #7a541b);
padding: 20px;
border: 2px solid #fff;
}
.registro h4 {

}
.registro input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px;
    border: none;
    outline: none;
    border-radius: 0;
}
.registro input:focus {
    border: none;
    outline: none;
}
.registro input[type=password] {
    position: relative;
}
.eyepass {
    appearance: none;
}
.registro input[type=submit] {
    background: linear-gradient(45deg, #172635 , #056370 , #173947);
    color: #fff;
      transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    font-weight: 300;
    border: 1px solid #fff;
}
.registro input[type=submit]:hover {
     background: linear-gradient(45deg, #172635 , #068ea1 , #173947);
     font-weight: 700;
    
}
.registro span.eyepass i {
position: absolute;
    display: block;
    width: 50px;
    height: 44px;
    top: 10px;
    right: 10px;
    padding: 0;
    margin: 0;
    text-align: center;
    line-height: 44px;
    z-index: 2;
    color: #7a541b;
    font-size: 29px;
}

.sep {
    clear: both;
}

 input[type=checkbox] {
    width: 20px;
    height: 20px;
 }
.patrabajar {
    display: block;
    width: 100%;
    background-color: black;
    height: 700px;

}
/*contenedor promo*/
.lapromo {
    top: 40px;
    position: relative;
}
.promoboxcont {
    position: relative;
    top: -80px;
    margin-bottom: -80px;
}
.promobox {
    position: sticky;   
    color: #fff;
    top: 100px;
    z-index: 1;
    padding: 20px;
    border: 1px solid #fff;
    background: linear-gradient(45deg, #172635 , #056370 , #173947);
    box-shadow: 0px 13px 12px rgba(0,0,0,0.3);
}
label.checkers {
    font-size: 0.8em;
}
.registerform a {
    color: #ffffff;
}
 .alreadyaccount a {
    color: #172635;
}
.registerform a:hover, .alreadyaccount a:hover {
    color: #056370;
}
.promobox a {
    border: 1px solid #DBB650;
    color: #DBB650;
    background: rgba(219, 182, 80, 0);
    padding: 5px 15px;
}
.promobox a:hover, .promobox a.on {
    border: 1px solid #DBB650;
    color: #fff;
    background: rgba(219, 182, 80, 1);

}
.promobox h2 {
    font-weight: 700;
}
.promobox h2, .promobox h6 {
    margin: 0;
    padding: 0;
}
.bar {
position: relative;
width: 100%;
height: 0.625rem;
 border-radius: 200px;
 background: rgba(255, 255, 255, 0.2);
 display: block;
}

.percent {
    display: block;
    text-align: left;
    border-radius: 200px;
    height: 0.625rem;
    background-color: #DBB650;
}
.financiado {
    opacity: 0.6;
}
.yelly {
    color: #DBB650;
}
a.call {
    padding: 20px 10px;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 700;
    margin: 10px 0 0;
}
.btn-link, .btn-link:active {
    color: #1F6172;
    text-decoration: none!important;
    font-weight: 700;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.btn-link:hover {
     color: #308da5;
      text-decoration: none;
    
}
.btn-link:after  {
   font-family: "bootstrap-icons" !important;
   justify-content: end;
   font-weight: 700;   
   content: "\F27C";
}
.btn-link.collapsed:after   {
   content: "\F279";
}

.accordion, .card {
    border: none;
}
.card-header {
    background-color: #fff;
    border-left: none;
    border-right: none;
    padding: 10px 0;
    border-top: none;
    border-bottom: 3px solid #1F6172;
}
.mustregistered {
    text-align: center;


}
a.secondarybut {
    background: #173947;
    color: #fff;
    width: 200px;
    display: block;

    padding: 20px 30px;
    margin: 20px auto;
    
}
a.secondarybut:hover {
    background-color: #1F6172;
}
/*maps */
.shadow {
    box-shadow: 0 10px 20px #666;
}
/*contact*/
.contact {
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/replaceimage.jpg) no-repeat center center;
    background-size: cover; 
    color: #fff;
    filter: blur(0px) grayscale(1);
    opacity: 0.08;
   

 }
 .contact > * {
    position: relative;
    z-index: 1;
     padding: 100px 0;
 }
 .contact input[type=checkbox] {
    margin: 0 10px 0 0;
 }
  .contact input[type=checkbox],  .contact span {
    width: auto;
 }

 .contact input, .contact textarea {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px;   
    width: 100%;
    background: rgba(200, 200, 200, 0.6);
    border: none;
    margin-bottom: 20px;
   	transition: all 0.2s ease-in-out;

 }
 .contact textarea:focus, .contact input:focus, .contact textarea:active, .contact input:active {
    background: rgba(210, 210, 210, 0.6);
    border: none;
    outline: none;
    
  } 


/*footer*/

footer {
    background: linear-gradient(45deg, #172635 , #056370 , #173947);
    color: #fff;
    padding: 60px 0 0;

 } 
.goldenbar {
    height:20px;
    background: linear-gradient(45deg, #7a541b , #d4ae57 , #d4ae57, #7a541b);
    margin: 0;
    padding: 5px 0;
    display: block;   
}
footer ul {
    padding: 0;
    margin: 0;
}
footer ul li {
    list-style-type: none;
    padding: 0 0 10px;
    margin: 0;
    font-size: small;
}
footer h6 {
    font-weight: 700;
}
footer ul li a {
    color: #fff;
}
footer ul li a:hover {
    color: #DBB650;
}
.footerlegal {
    background: #172635;
    padding: 40px 0;
    font-size: small;
    margin-top: 60px;
}
.social ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #173947;

    font-size: 14px;
    border-radius: 100%;
}
.social ul li a:hover { 
    background-color: #DBB650;
    color: #fff;
}
/*end of footer*/
/*go up*/
.go-up {
    position: fixed;
    width: 50px;
    height: 50px;
   background: linear-gradient(45deg, #172635 , #056370 , #173947);
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 100px;
   color: #fff;
   bottom: 20px;
   right: 20px;
   z-index: 2;
   border: 2px solid #fff;
    transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
    cursor: pointer;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.5);
}
.go-up:hover {
    width: 48px;
    height: 48px;
    border: 4px solid #fff;
    font-weight: bold;
    

}
