@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&family=Raleway:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&family=Raleway:ital,wght@0,500;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body{
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

.navbar{
    background-color: white;
}

.encabezado{
    margin-top: 10px;
}

.encabezado-imagen{
    width: 100%;
    box-shadow: 5px 5px 12px rgb(169,147,123);
}

.encabezado-texto{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #E67E22;
    color: white;
    box-shadow: 5px 5px 12px rgb(169,147,123);
    width: 49%;
}

.seccion{
    font-size: 1.5em;
    line-height: 2em;
    font-weight:200;
    text-align: center;
    color: #2471A3;
}

.seccion h5{
    margin-top: 30px;
    text-align: start;
    color: #273646;
    padding: 8px;
}

.seccion p{
    font-size: 1.1em;
    line-height: 1.2em;
    padding: 8px;
}

.servicios{
    display: flex;
    justify-content:center;
    margin-top: 30px;
}

.servicios-titulo{
    font-size: 30px;
}

.card{
    border: none;
    transition: all 0.3s;
    background-color: #f0f3f4;
    padding: 5px;
    border-radius: 5px;
}

.card-text{
    font-size: 16px;
    line-height: 24px;
    font-style: normal;
    font-weight: 400;
    color: #292f3d;
}

.card:hover{
   transform: scale(1.03);
}

.administrativa{
    font-size: 1.3em;
    line-height: 1.5em;
    text-align: start;
    max-width: 550px;
}

.administrativa h4{
    font-family: Raleway, sans-serif;
    font-style:italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #454951;
    margin-bottom: 20px;
}

.administrativa-imagen{
    width: 45%;
    text-align: end;
}

.logo-sii{
    width: 150px;
}

.logo-previred{
    width: 300px;
    margin-right: 20px;
}

.logo-tgr{
    width: 80px;
    margin-right: 50px;
}

.logo-dt{
    width: 80px;
}

.clientes-imagen{
    width: 500px;
    border-radius: 5px;
    box-shadow: 5px 5px 12px rgb(169,147,123);
}

.head{
    transform: scale(1);
    display: none;
}

.mov_servicios {
    animation-duration: 3s;
    animation-name: slidein;
  }
  
  @keyframes slidein {
    from {
      margin-left: 100%;
      width: 300%;
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
  }
  

@media only screen and (max-width: 600px) {

    .encabezado-texto{
        margin-top: 20px;
        color: black;
        background-color: transparent;
        box-shadow: none;
        width: 100%;
    }

    .card{
        width: 100%;
        margin-bottom: 10px;
        transition: none;
    }

    .card:hover{
        transform:none;
     }

    .administrativa{
        width: 100%;
        text-align: center;
    }

    .administrativa-imagen{
        width: 100%;
        text-align: center;
    }

    .seccion h5{
        text-align: center;
    }

    .seccion p{
        font-size: 16px;
    }

    .logo-sii{
        width: 75px;
    }
    
    .logo-previred{
        width: 150px;
        margin-right: 20px;
    }
    
    .logo-tgr{
        width: 40px;
        margin-right: 50px;
    }
    
    .logo-dt{
        width: 40px;
    }
    
}