body {
    background: #fff; 
}

#contLogo {  
    background: #fff;
background-position: top;
background-repeat: no-repeat;
margin-bottom: 4%;
}

#logo {
    width: 100%;
    text-align: center;
    color:#fff;
    padding: 3%;
    padding-bottom: 1%; 
}

.navbar {
    background-color:#ECE9E6;
}

.jumbotron {
    margin-bottom: 0%;
    color: #3E3E3E;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #fff;
    
}

.card-columns {
    padding: 1%;

    @include media-breakpoint-only(lg) {
        column-count: 4;
    }

    @include media-breakpoint-only(xl) {
        column-count: 5;
    }
}

.container {
    color: rgb(255, 255, 255);
    margin-top: 0%;
}

#foot {
   background-color: aquamarine;
}

#cont {
    /*background-image: linear-gradient(rgba(49, 0, 255, 0.8), rgba(132, 5, 29, 0.8)), url(../images/i011.jpg);*/
    background-size: cover;
    background-position: center;
}

.icon-box .fas {
    font-size: 40px;
    margin: 25px auto;
}

.counter-box p {
    font-size: 20px;
}

.counter-box .counter {
    font-size: 80px;
}

h6 {
    font-weight: bold;
}

.ayt {
    color: rgb(255, 1, 200);
    font-size: larger;
}

.d {
    background-color: deeppink;
    color: #fff;
}

.d2 {
    color: deeppink;
}

.r {
    background-color: rgb(252, 135, 39);
    color: #fff;
}

.r2 {
    color: rgb(252, 135, 39);
}

.h {
    margin-bottom: 0%;
}

.t {
    font-weight: bold;
}

.lead{
    color:slategrey;
}

.servicios {
    display: flex;
    justify-content: space-around; /* Para distribuir los servicios horizontalmente */
    margin-bottom: 4%;
    background-color: rgb(193, 240, 237);
    text-decoration: none;
}

.servicio {
    text-align: center;
    color:#fff;
    border-radius: 10px;
    width: 32%; /* Ajusta el ancho según tus necesidades */
    padding: 20px;
    background-color: mediumorchid;
    margin:3%;
    text-decoration: none;
}

.servicio i {
    font-size: 24px;
    color:#fff;
    text-decoration: none;
}

.servicio h3 {
    margin-top: 10px;
    font-size: 18px;
    color:#fff;
    text-decoration: none;
}

.servicio p {
    margin-top: 10px;
    font-size: 14px;
    color:#fff;
    text-decoration: none;
}

/* Media query para ajustar el diseño en pantallas pequeñas */
@media (max-width: 768px) {
    .servicios {
        flex-direction: column; /* Cambia la dirección del flex a vertical */
    }

    .servicio {
        width: 90%; /* Ocupa todo el ancho disponible */
        margin:5%;
        margin-bottom: 20px; /* Añade espacio entre los servicios */
    }
}

.servicio img {
    width: 100px; /* Ajusta el tamaño de la imagen según tus necesidades */
    height: auto; /* Para mantener la proporción */
    margin-bottom: 10px; /* Espacio entre la imagen y el título */
}


.sucursales {

    display: flex;
    justify-content: space-around; /* Para distribuir los servicios horizontalmente */
    
}

.sucursal {
    text-align: center;
    color:#fff;
    border-radius: 10px;
    width: 32%; /* Ajusta el ancho según tus necesidades */
    padding: 20px;
    background-color:dodgerblue;
    margin:3%;
    text-decoration: none;
}

.sucursal i {
    font-size: 24px;
    color:#fff;
    text-decoration: none;
}

.sucursal h3 {
    margin-top: 10px;
    font-size: 18px;
    color:#fff;
    text-decoration: none;
}

.sucursal p {
    margin-top: 10px;
    font-size: 14px;
    color:#fff;
    text-decoration: none;
}

/* Media query para ajustar el diseño en pantallas pequeñas */
@media (max-width: 768px) {
    .sucursales {
        flex-direction: column; /* Cambia la dirección del flex a vertical */
    }

    .sucursal {
        width: 90%; /* Ocupa todo el ancho disponible */
        margin:5%;
        margin-bottom: 20px; /* Añade espacio entre los servicios */
    }
}

.sucursal img {
    width: 100px; /* Ajusta el tamaño de la imagen según tus necesidades */
    height: auto; /* Para mantener la proporción */
    margin-bottom: 10px; /* Espacio entre la imagen y el título */
}

/* Estilo para los enlaces */
a {
    color: inherit; /* Hereda el color del texto del contenedor padre */
    text-decoration: none; /* Elimina el subrayado del enlace */
}

/* Estilo para los enlaces al pasar el mouse */
a:hover {
    color: inherit; /* Mantiene el color del texto al pasar el mouse */
    text-decoration: none; /* Elimina el subrayado del enlace */
}

.tabla-servicios {
    border-radius: 5px;
    padding: 10px;
}

.tabla-servicios table {
    width: 100%;
    border-collapse: collapse;
}

.tabla-servicios th,
.tabla-servicios td {
    border: 1px solid #ccc;
    padding: 8px;
}

.tabla-servicios th {
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: left;
}

