
body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: var(--dark);
    line-height: 28px;
    overflow-x: hidden;
    background: var(--light);
    font-family: "poppins", sans-serif !important;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0.2rem 0rem;
    font-weight: 500;
    color: var(--primary);
    font-family: "poppins", sans-serif !important;
    
}

p {
    color: var(--dark);
    margin: 0px;
    font-weight: 400;
}

a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 400;
    
    
}

.item{
    color: var(--primary);
}
 

.container {
    width: 100%;
    padding-right: 1em;
    padding-left: 1em;
    margin-right: auto;
    margin-left: auto;
}

/* -------------PANTALLA DE CARGA --------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    overflow: hidden;
}

 /* icono pantalla carga */

.preloader .preloader-inner .preloader-icon span {
    position: absolute;
    display: inline-block;
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background: white;
    opacity: 0;
    -webkit-animation: preloader-fx 0.5s linear infinite;
    animation: preloader-fx 0.2s linear infinite;
}

.custom-button {
    border:none;
    padding: 0.4rem 1.5rem;
    font-weight: 500;
    color: white;
    text-transform: none;
    display: inline-block;
    background-image: none;
    background-color: var(--primary);
    border-radius: 10px;

}

.custom-button:hover {
    box-shadow: 0px 10px 15px 0px rgb(0 0 0 / 40%);
    color: white ;
}

.custom-button a {
    color: white;
}


.custom-button2 {
    padding: 0.4rem 1rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: capitalize;
    display: inline-block;
    background-image: none;
    background-color: transparent;
    border: 1px solid var(--primary);
    border-radius: 4px; 

}

.custom-button2:hover {
    color: var(--primary);
    box-shadow: 0px 10px 15px 0px rgb(0 0 0 / 40%);
}

.disabled-button {
    opacity: 0.3;
    pointer-events: none;
}

input[type="submit"] {
    cursor: pointer;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    border: 1px solid var(--primary);
    
}


/* ------- BOTÓN SCROLL TO TOP -------------*/

.scrollToTop {
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    color: var(--light);
    z-index: 999;
    bottom: 30px;
    right: 30px;
    position: fixed;
    border-radius: 5px;
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
    background: var(--primary);
    text-align: center;
    cursor: pointer;
}

.scrollToTop.active {
    bottom: 150px;
}

.title{
    text-transform: lowercase;
}

.details-banner-wrapper .details-banner-content.style-two .title {
    text-transform: none;
}

.text{
    color: var(--dark);
    font-weight: 500;
}

a.text:hover{
    color: var(--dark);
}

