
.main-color1{
    color:rgb(51, 51, 51);
}

.sec-color1-bg {
  background-color:rgb(235, 91, 29) !important; 
}

.sec-color2-bg {
    background-color: rgb(0, 215, 207) !important;
}

.sec-color3-bg {
    background-color: rgb(97, 97, 97) !important;
}

.sec-color4-bg {
    background-color: rgb(234, 92, 26) !important;
}

.sec-color5-bg {
    background-color: rgb(64,134,182) !important;
}

.btn-bg{
    background-color:rgb(234, 92, 26) !important; 
    border-color:rgb(97, 97, 97) !important;
}

.btn-bg:hover{
    background-color:rgb(51 , 51 ,51) !important; 
}

.form-label {
    font-size:14px !important;
    color:rgb(23, 23, 149) !important;
}

.form-labelb {
    font-size:14px !important;
    color:rgb(71, 74, 81) !important;
}

.text-color1 {
    color:rgb(71, 74, 81) !important; 
}
  
.text-stepper {
    font-size:14px !important;
}

.stepper-progress {
    width: 280px;
    margin-right: 5px !important;
}

.stepper-container {
    height: 2px;
    position:absolute;
    margin-top:18px;
}

.number-circle {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: rgb(234, 92, 26);
    color: white;
    text-align: center;
    font: 16px sans-serif ;
}

.inter-regular {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
}

.inter-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
}

@media screen and (max-width: 768px) {

    .text-stepper {
        font-size:10px !important;
    }

    .stepper-progress {
        width: 220px;
        margin-right: 5px !important;
    }

    .stepper-container {
        height: 2px;
        position:absolute;
        margin-top:18px;
        margin-left:30px;
    }

}

/* =========================================
   BASE
   ========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================
   CONTENEDOR PRINCIPAL
   ========================================= */

.home-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.card-home {
    width: 100%;
    max-width: 850px; /*1400*/
    margin: 0 auto; 
}

/* =========================================
   CABECERA
   ========================================= */

.header-container {
    width: 100%;
    max-width: 100%;
    padding: 15px;
    overflow: hidden;
}

.header-home {
    width: 100%;
    max-width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}


/* =========================================
   LOGO
   ========================================= */

.header-logo {
    display: block;

    flex: 0 1 45%;

    min-width: 0;
    max-width: 45%;
}

.logo-home {
    display: block;

    width: auto;
    max-width: 100%;
    max-height: 60px;

    height: auto;
}


/* =========================================
   SECCION DERECHA
   ========================================= */

.header-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 0 1 55%;

    min-width: 0;
    max-width: 55%;

    gap: 8px;
}


/* =========================================
   TEXTO
   ========================================= */

.header-text {
    min-width: 0;
    max-width: 100%;

    text-align: right;

    line-height: 1.3;

    overflow-wrap: break-word;
}


/* =========================================
   IMG_HOMEDER
   ========================================= */

.header-image {
    display: block;

    flex: 0 1 auto;

    width: auto;
    height: auto;

    max-width: 56px;
    max-height: 32px;
}


/* =========================================
   IMAGEN PRINCIPAL
   ========================================= */

.home-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
}

/* =========================================
   CUERPO
   ========================================= */

.contact-body {
    width: 100%;
    max-width: 100%;

    padding: 0 !important;
}


/* =========================================
   OPCIONES
   ========================================= */

.contact-options {
    width: 100%;
    max-width: 100%;

    padding: 8px 10px 0;

    background: white;

    text-align: center;
}


/* TITULO */

.contact-title {
    display: block;

    width: 100%;

    margin-bottom: 10px;
}


/* =========================================
   BOTONES
   ========================================= */

.contact-buttons {
    display: grid;

    width: 100%;
    max-width: 100%;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;

    padding-bottom: 10px;
}

.contact-btn {
    width: 100%;
    max-width: 100%;

    min-width: 0;
    min-height: 45px;

    padding: 8px 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    white-space: normal;

    line-height: 1.2;
}


/* =========================================
   FOOTER
   ========================================= */

.footer {
    width: 100%;
    max-width: 100%;

    overflow: hidden;

    text-align: center;
}

.footer span {
    max-width: 100%;
}


/* =========================================
   TABLET
   ========================================= */

@media screen and (max-width: 991px) {

    .header-logo {
        flex-basis: 40%;
        max-width: 40%;
    }

    .header-contact {
        flex-basis: 60%;
        max-width: 60%;
    }

    .header-image {
        max-width: 50px;
        max-height: 28px;
    }

    .contact-buttons {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================
   TELEFONO
   ========================================= */

@media screen and (max-width: 575px) {

    .header-container {
        padding: 12px 10px;
    }

    .header-home {
        flex-direction: column;
    }

    .header-logo {
        flex: none;

        width: 100%;
        max-width: 80%;
    }

    .logo-home {
        max-height: 50px;
        margin: 0 auto;
    }

    .header-contact {
        flex: none;

        width: 100%;
        max-width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }

    .header-text {
        text-align: center;
        font-size: 13px;
    }

    .header-image {
        max-width: 45px;
        max-height: 25px;
    }

    .contact-buttons {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .contact-btn {
        min-height: 45px;
    }
}
