html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto-Regular', sans-serif !important ;
    color: #1e1e1e;
    margin: 0;
    padding: 0;
}
button, input, optgroup, select, textarea {
    font-family: 'Roboto-Regular', sans-serif !important ;
}
b, strong {
    font-family: 'Roboto-Regular', sans-serif !important ;
    font-weight: 600;
}
.logo-60-anos{
    height: 35px;
    width: auto;
}
.logo-acreditacion{
    max-height: 75px;
    width: auto;
}
.bg-header-footer{
    background-color: #1e1e1e;
}
.altura-100{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.navegacion-guias{
    background-color: #BC7E3C;
}

h1{
    font-family: 'Roboto', sans-serif !important ;
    font-weight: 600;
    color: #fff;
    font-size: 1.8rem;
}
@media (min-width: 768px){
    h1{
    font-size: 2rem;
}
}
.btn-activo{
    background-color: #FFFFFF;
    padding: 0.6rem 0.9rem;
    color: #1e1e1e;
    font-weight: 700;
    transition: all 0.5s ease;
    border-radius: 40px;
    font-size: 0.8rem;
    border: solid 1px #FFFFFF;
    line-height: normal;
    min-width: 170px;
}
@media (min-width: 768px){
    .btn-activo{
      min-width: 135px;
    }
}
@media (min-width: 992px){
    .btn-activo{
      font-size: 1rem;
      padding: 0.6rem 1.2rem;
      min-width: 190px;
    }
}

.btn-pagos{
   position: relative;
    overflow: hidden;
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    font-size: 0.8rem;
    padding: 0.6rem 0.9rem;
    font-weight: 700;
    transition: all .5s ease;
    z-index: 1;
    line-height: normal;
    min-width: 170px;
}
@media (min-width: 768px){
    .btn-pagos{
      min-width: 135px;
    }
}
@media (min-width: 992px){
    .btn-pagos{
      font-size: 1rem;
      padding: 0.6rem 1.2rem;
      min-width: 190px;
    }
}


.btn-pagos:hover{
    color: #1e1e1e;
    background-color: #ffffff;
}


button:focus{
    outline: 0;
}

.stepper-box{
    position: relative;
    width: 100%;
}
.stepper-inner{
    width: 100%;
}
.stepper-horizontal{
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}
@media (min-width: 768px){
.stepper-horizontal{
  padding-top: 0.2rem;
  padding-bottom: 0.7rem;
}
}
.stepper-step{
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
}

.stepper-step:not(:last-child)::after{
  content: "";
  display: block;
  flex: 1;
  min-width: 30px;
  height: 2px;
  background: #d9d9d9;
  margin-left: 0.8rem;
  margin-right: 0rem;
}
@media (min-width: 768px){
   .stepper-step:not(:last-child)::after{
  min-width: 35px;
}
}
.stepper-head{
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  padding: 0;

}
.stepper-head-icon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(162, 145, 177);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: .4s;
    font-size: 15px;
}


.stepper-head-text{
  margin-top: 0;
  font-size: .85rem;
  color: #666;
  text-align: left;
  display: none;
  line-height: normal;
}

@media (min-width: 992px){
    .stepper-head-text{
      display: inline;
      font-size: .75rem;
    }
}
@media (min-width: 1200px){
    .stepper-head-text{
      display: inline;
      font-size: .85rem;
    }
}

.stepper-step.stepper-active .stepper-head-icon{
    background: rgb(92, 63, 121);
}

.stepper-step.stepper-active .stepper-head-text{
    color: rgb(30, 30, 30);
    font-weight: 600;
}

.stepper-step:hover .stepper-head-icon{
   background: rgb(92, 63, 121);
}

.stepper-contents{
    min-height: 180px;
}
@media (min-width: 768px){
    .stepper-contents{
    max-width: 85%;
    margin: 1.4rem auto 0 auto;
}
}

.stepper-content{
    width: 100%;
}

.stepper-content.animar-entrada{
    animation: entradaDesdeIzquierda .4s ease both;
}

@keyframes entradaDesdeIzquierda{
    from{
        opacity: 0;
        transform: translateX(-55px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

.stepper-prev,
.stepper-next{
    position: absolute;
    top: 280px;
    z-index: 5;
    background: #e5e5e5;
    color: #1e1e1e;
    border-radius: 50%;
    font-size: 1rem;
    padding: 0.5rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.stepper-next:after {
    font-family: 'Material Icons';
    content: "\e5cc";
    color: #1e1e1e;
    padding-left: 0px;
    font-size: 1.5rem;
    line-height: normal;
    vertical-align: middle;
}
.stepper-prev:before {
    font-family: 'Material Icons';
    content: "\e5cb";
    color: #1e1e1e;
    padding-right: 0px;
    font-size: 1.5rem;
    line-height: normal;
    vertical-align: middle;
}
.stepper-prev:hover,
.stepper-next:hover{
    background: #d1d1d1;
}

.stepper-prev{
    left: -40px;
    
}
.stepper-next{
    right: -40px;
}
.stepper-step{
  flex: 1 1 auto;
  min-width: 0;
}
.stepper-step:first-child{
    justify-content: flex-start;
}

.stepper-step:last-child{
  flex: 0 0 auto;
}

.stepper-next-mobile, .stepper-prev-mobile{
    background: #d4d4d4;
    color: #1e1e1e;
    border-radius: 40px;
    align-items: center;
    font-size: .9rem;
    padding: 0.6rem 1rem;
    font-weight: 700;
    line-height: normal;
}
.stepper-prev-mobile::before{
    content: "←";
    margin-right: .5rem;
}

.stepper-next-mobile::after{
    content: "→";
    margin-left: .5rem;
}
.stepper-hidden {
  display: none !important;
}
.btn:focus{
    box-shadow: 0 0 0 0rem;
}

.titulo-pasos {
    font-size: 1.4rem;
    font-weight: 600;
  
}

.texto-pasos{
    font-size: 1rem;
    font-weight: 400;
}

