/* ----- GENERAL STYLE ----- */
@font-face {
    font-family: "Barlow";
    src: url("/hosting/alojamiento-activo/fonts/Barlow-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Barlow";
    src: url("/hosting/alojamiento-activo/fonts/Barlow-SemiBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}
body{
    font-family: Barlow;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
}
p{
    font-family: "Barlow";
    src: url(/hosting/alojamiento-activo/fonts/Barlow-Regular.ttf);
}
ul {
    list-style-type: none;
}
.texto{
    padding-top: 100px;
    padding-inline-start: 50px;
    padding-inline-end: 150px;
    width: fit-content;
}
.steps{
    padding: 40px;
}
/* ----- FAQS ----- */
.faqs-content{
    font-size: medium;
    font-weight: bold;
}
.lista-faqs,ul{
    padding-inline-start: 0 !important; 
}
.contenedor{
  display: flex;
  -webkit-box-flex: row wrap;
  justify-content: left;
  padding-left: 50px;
}


/* ----- AYUDA ----- */
.contact-content{
    font-size: medium;
    font-weight: bold;
}
.phone{
    display: flex;
    flex-wrap: wrap;
    width: 250px;
    justify-content: space-between;
}
.contacto{
    margin-left: 40px;
}
.contacta{
    color: #5FD800;
    text-decoration-color: #5FD800;

}

/* ----- FOOTER ----- */
.ventajas{
    font-size: 14px;
    margin-bottom: 18px;
}
.logo{
    margin-right: 15px;
    height: 20px;
    width: 90px;
}
.menu__button{
    height: 50px;
    background: #fff;
    color: black;
    border: 2px solid #000;
    padding: 12px;
    text-decoration: none;
    border-radius: 6px;
}
.menu__button:hover{
    background-color: #333;
    color: white;
}
footer{
    position: fixed;
    bottom: 25px;
}
/* ----- RESPONSIVE ----- */
@media only screen and (max-width: 850px) {
    body{
        flex-direction: column;
        font-size: small;
    }
    ul{
        font-size: 14px;
    }
    .contenido{
        display: block;
    }
    .contenedor{
        display: block;
        padding-left: 50px;
    }
    .texto{
        padding-top: 15px;
    }
    .contacto{
        margin-left: 0px;
    }
    .menu__button{
        display: flex;
        align-items: flex-end;
        max-height: 10px;
        max-width: 200px;
        justify-content: center; 
        padding-left: 0px;  
    }
    .steps{
        padding-left: 40px;
        max-width: 300px;
    }
    .phone{
        width: 200px;
    }
    footer{
        position: relative;
        padding-top: 60px;
        padding-left: 40px;
        padding-right: 100px;
    }
}
