@font-face{
    font-family: 'Gilroy-Bold';
    src:url(/Fonts/Gilroy/Gilroy-Bold.ttf);
    font-weight: bold;
    font-style: bold;
}

@font-face{
    font-family: 'Gilroy-Reg';
    src:url(/Fonts/Gilroy/Gilroy-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family: 'Gilroy-Med';
    src:url(/Fonts/Gilroy/Gilroy-Medium.ttf);
    font-weight:bolder;
    font-style: bolder;
}

@font-face{
    font-family: 'Product';
    src:url(/Fonts/Product/Product\ Sans\ Bold.ttf);
    font-weight: bold;
    font-style: bold;
}

@font-face{
    font-family: 'Product-Reg';
    src:url(/Fonts/Product/Product\ Sans\ Regular.ttf);
    font-weight: normal;
    font-style: normal;
}


@font-face{
    font-family: 'Product-Italic';
    src:url(/Fonts/Product/Product\ Sans\ Italic.ttf);
    font-weight: normal;
    font-style: normal;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}


body{
    background-color: #ffffff;
    
}

.hero{
    width:auto;
    height: auto;
}


img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.containerr {
    padding: 0px 0;
    width: 100%;
    max-width: 2000px;
    margin: auto;
    overflow: hidden;
    /*border: 2px solid red;*/
}

/***bonton scroll**/

html{
    scroll-behavior: smooth;
}


button .fa-angle-up i{
    width: 25px;
    height: 25px;
}

#scrollBtn{
    position: fixed;
    bottom: 120px;
    right: 20px;
    border: none;
    outline: 0;
    background-color: #CFAF6A;    
    cursor: pointer;
    color: #402026;
    padding:10px;
    transition: all 300ms ease;
    transform: scale(0);
}
#scrollBtn:hover{
    background-color: rgb(216, 159, 38);    
}



/********************/


.header {
    left: 0;
    top: 0;
    width: 100%;    
    z-index: 10;
}


.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*border: 2px solid red;*/
}

.header .logo img{
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: 50px;
    vertical-align: middle;
    width: 52%;
    height: 52%;
    object-fit: cover;

}

.header .menu{
    width: 65%;
    height: 40%;
   
}


.header .menu .head{
    display: none;        
}

.header .menu ul{
    list-style: none;

}

.header .menu > ul > li{
    display: inline-block;
}

.header .menu > ul > li:not(:last-child)
{
    margin-right: 40px;
}

.header .menu .dropdown{
    position: relative;
}


.header .menu a{
    text-decoration: none;
    /*text-transform: capitalize;*/
    font-size: 16px;
    color:#333333;
    line-height: 1.5;
    display: block;
    /***/
    font-family: 'Girloy-Med';    
    font-weight: 400;
    /***/
}

.header .menu > ul > li > a{
    padding: 24px 0;
}

.header .menu > ul > .dropdown a{
    padding-right: 15px;
}

.header .menu i{
    font-size: 10px;
    pointer-events: none;
    user-select: none;
    position: absolute;
    color:#402026;
    top:calc(50% - 5px)

}

.header .menu > ul > li > i{
    right: 0;

}


.header .menu .s-menu{  /*MENU DESPLEGABLE*/
    position:absolute;
    top: 100%;
    left:0;
    width: 230px;
    padding: 15px 0;
    background-color: rgba(230,230,230, 0.95);
    box-shadow: 0 0 5 hsla(0, 0%, 0%, 0.5);
    z-index: 1;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden; /* aqui es hidden*/
    opacity: 0;
}


.header .menu .s-menu-right{
    left:100%;
    top: 0;
    
}

.header .menu li:hover > .s-menu{
    opacity:1;
    transform:none;
    visibility: visible;
    transition:all 0.5s ease;
}


.header .menu .s-menu a{
    padding: 6px 24px;
     
}


.header .menu .s-menu .dropdown > a{
    padding-right: 34px;
    
}

/***************lineas sub menu**************/
.header .menu .s-menu  span{
    background-image: linear-gradient(hsl(0, 49%, 19%), hsl(0, 29%, 20%));
    background-size: 0 1px;   
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
    
}


.header .menu .s-menu li:hover > a > span{
    background-size: 100% 1px;    
    
}



/****flecha derecha menu***/
.header .menu .s-menu i{
    right: 24px;
    
}
/*******************/


.header .menu .nb2 li a{
    display:block;    
    text-decoration: none;
    font-size: 13px;   
    color: #333333;
    font-family: 'Gilroy-Med';
    font-weight: 400;  
    text-align:left;  
    
 }
 
 .header .menu .nb1 li a{
    display:block;    
    text-decoration: none;
    font-size: 13px;   
    color: #333333;
    font-family: 'Gilroy-Med';
    font-weight: 400;  
    text-align:left;   
    padding: 17px 35px;  
      
 }

.header .menu .nb2 .lnk{
    padding: 22px 20px; 
     
}


.header .menu .nb1 a:hover{
    color:#402026;
    font-weight: bold;
}


.header .menu .nb2 a:hover{
    color:#402026;
    font-weight: bold;
   
}


/*
header nav .smenu{
    position: absolute;
}*/

.header .menu .bn2 ul li{
   position: relative; 
   /*border: 2px solid green;*/
   padding-top: 20px 0px;
   display:inline-block;   
}

.header .menu .nb1{
    list-style: none;
    display:flex;    
    justify-content: flex-end; 
    text-align: left;
    /*border: 2px solid yellow;*/
}


.header .menu .nb2{
    list-style: none;
    display:flex;    
    justify-content: flex-end; 
    text-align: left;
    /*border: 2px solid yellow;*/
}


header label{
    cursor:pointer;
    display: none;
}


/*Menu Navegación Derecho*/

.header .navbarb{
    /*border: 2px solid yellow;*/
    width: 260px;
    height: 120px;
    

}

.header .navbarb ul{    
    text-align: center; 
}

.header .navbarb li{
    top:0px;
    width: 260px;
    height: 60px;
    list-style: none;
    text-decoration: none;
    align-items: center;
    padding: 20px 0px;  
    background-color: #402026;
    color: #ffffff;
    transition: background 1s linear;
    
}

.header .navbarb ul li a{
    font-size: 13px;
    font-family: 'Gilroy-Med';
    font-weight: normal;
    color: #ffffff;
    text-decoration: none;
    text-align: center;  
}

.header .navbarb ul li:hover,
.header .navbarb ul li:focus
{        
    background: #CFAF6A;      
     
}


/*********************** B U S C A D O R *****************/
#ctn-icon-search {
    position: absolute;
    /*right: 0px;*/
    height: 60px;
    width: 260px;
    display:flex;
    justify-content: center;
    align-items: center;
    background-color:#E5E5E5;
    padding: 15px;
}

#ctn-icon-search i{
    color: #333333; 
    font-size: 16px;
    cursor: pointer;
    transition: all 300ms;
    padding-inline: 5px;
}

#ctn-icon-search i:hover{
    color:#CFAF6A;    
}

#ctn-bars-search{ /* caja busqueda*/
    background: #e5e5e5;
    padding: 3px;
    width: 260px;
    height: 40px;  
    justify-content: left; 
}

#ctn-bars-search input{
    display: block;
    width: 200px;
    height: 40px;
    margin: auto;
    padding: 6px;
    font-size: 13px;
    background-color: #e5e5e5;
    color:#1a1a1a;
    border: none;
    font-family: 'Gilroy-Med';
    font-weight: normal;
    outline: 0;
    z-index: 2;
}

.bx-search{
    position: relative
}
#box-search{
    position:absolute;
    top:0px;
    width: 260px;
    right:0%;
    /*transform: translateX(-50%);*/
    background-color: #e5e5e5;
    z-index: 3;
    overflow: hidden;
    display:none;   
}

#box-search li a{
    display: block;
    width: 250px;
    color:rgb(26,26,26);
    padding: 12px 20px;
    font-family: 'Gilroy-Med';
    font-weight: normal;
    font-size: 13px;
    list-style: none;
    text-decoration: none;

}

#box-search li a:hover{
    background: rgb(207, 175, 106, 0.60);    
}

#box-search li a i{
    margin-right: 10px;
}

#cover-ctn-search{
    width: 100%;
    height: 100%;
    position: fixed;
    left:0;
    background: rgba(255,255,255,0.1);
    z-index: 2;
    display: none;
}



/*************SUBMENU*********************/
header nav .smenu{
    position:absolute;
    
}

/**BOTON ICON*/

.navbarb > *{
    margin-right: 0px;
}

.navbarb .open-menu-btn{
    display: none;
}




/*************SECCION HEADER IMAGEN Y MENUS HOME*********************/

.header-contenido{
    display: flex;
    justify-content: center;    
    align-items: end;    
    background: no-repeat center top url("/assets/images/ppa.jpeg");
    background-size: 100% 80%;
    object-fit:cover;
    overflow: hidden;    
    width: 100%;
    height: 40vw;/*600px; */
    justify-items: center;
    padding-top: 0px;   
    padding: 0px 20px;
}


.Enlace{
    background-color: #402026;
    width: 380px;
    height: 16vw; /*240px;*/
    margin: 0px;
    padding: 30px;
    display:flex;    
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.Enlace h1{
    font-size: 33px; 
    color: #f1f1f1;
    font-family: 'Gilroy-Reg';
    font-weight: 600; 
    line-height: 1.1; 
    transform: translateY(130px);    
    padding: 10px;
}

.Enlace .lista{
    font-size: clamp(12px, 2vw + 1rem, 14px);
    font-family: 'Gilroy-Reg';
    font-weight: normal; 
    line-height: 1.2; 
    width: 320px;
    height: 220px;
    /*background-color: #f1f1f1;*/
    padding: 20px 25px;
    opacity: 1;
    transform: translateY(200px);
}


.Enlace:hover{
    background: #f1f1f1;
    color: #333333;
}


.Enlace:hover h1{
    transform: translateY(-1px);
    font-size: clamp(18px, 2vw + 1rem, 22px);
    transition: all 350ms;   
    color: #333333;    
}

.Enlace:hover .lista{
    transform: translateY(-2px);
    transition: all 500ms;   
}

.Enlace1, .Enlace2 {
    margin-right: 0.5rem;
}

.Enlace1:hover,
.Enlace2:hover,
.Enlace3:hover{    
    box-shadow:
    1px 0 1px #59363C,
    -0.1em 0 0.1em #402026 inset;   
}

.Enlace2 h1
{
    padding-right: 100px;
    
}

.Enlace3 h1
{
    padding-right: 90px;  

}


/***********TEXTO IZQ - IMAGEN DERECHA********************/

.sect1-contenedor{
    padding: 20px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.sect1-contenedor .img-sect1{
    flex-basis: 50%;
    margin: 50px;
    /*border: 2px solid green;*/
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect1-contenedor .img-sect1 img{
    width: 100%;
    height: 90%;
    object-fit: cover;
}

.sect1-contenedor .img-sect1 img:hover{
    filter: grayscale(80%);
}


.sect1-contenedor .text-sect1{
    width: 420px;
    height: 420px;    
    padding: 35px 30px 40px 60px;
    display:flex;
    flex-direction: column;
    justify-content: center;  

}

.sect1-contenedor .text-sect1 h1{
    font-size: clamp(48px, 2vw + 1rem, 60px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1px; 
    font-family: 'Gilroy-Med';
    color: #402026;
    font-weight: 500; 
    /*-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #402026;*/
}
.sect1-contenedor .text-sect1 p{
    font-size: clamp(22px, 2vw + 1rem, 28px);
    line-height: 1.2;
    margin-top: 15px; 
    font-family: 'Gilroy-Med';
    font-weight: 500; 
    color:#333333;
}


.animado {
    opacity: 0;
    transition: all 0.5s;
}

.mostrarArriba{
    animation: mostrarArriba 1s;
}

@keyframes mostrarArriba {
    0%{
        transform: translateY(-60px);
    }
    100%{
        transform: translateY(0);
    }
}


/******************GALERY IMG X 5************************/

.images{
   /* border: 2px solid green;    */
    padding:  0 0 0 0;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    flex-basis: 20%;
    background-color:#f1f1f1;
    overflow: hidden;
    border:none;     
}

.images .imag{
    /*texto dentro de la imagen*/
    width: 400px;
    height: 35vw; /*450px;*/
    display:flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    overflow: hidden;
    /*border: 2px solid yellow;*/
    
    
}

.images .imag img{
    width: 100%;
    height: 100%;
    object-fit: cover;  
    overflow: hidden;  
    object-fit: cover;
    
}
.images .imag:hover{
    filter: saturate(200%);
}

.images .imag h2{
    font-size: clamp(18px, 1vw + 0.8rem, 30px);
    line-height: 1.3;
    line-height: 1.3;
    color: #ffffff;
    /*margin: 13px;*/
    align-content: end;
    padding: 13px;
    overflow: hidden;
    /***/
    position:absolute;
    /**/
    font-family: 'Gilroy-Med';
    font-weight: 600;    
    
    /**capa semiobscura*/
    background: linear-gradient(rgba(5,7,12,0.20), rgba(5,7,12, 0.20));
    width: 100%;
    height: 100%;
    top: 0;   

}

/******************CONTACTENOS HOME************************/

.Formulario{
    /*border: 2px solid green;   */ 
    display: flex;
    justify-content:flex-start;
    align-items: center;
    background-color:white;
    width: 100%;
    height: 450px;
    background-color: #59363C;
}

.Formulario .text-form{ 
    width: 460px;
    height: 100%;
    display:flex;
    flex-basis: 37%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.Formulario .text-form h1{
    width: 400px;
    height: 340px;
    padding: 40px;
    font-size: 42px; 
    font-weight: 300;  
    line-height: 1.3;
    color: white;
    background-color: #59363C;
    /***/
    position:absolute;
    /**/

    font-family: 'Gilroy-Reg';
    font-weight: 400; 
    color: 59363C;
    
 }

 .Formulario .text-form img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }

 .Formulario .cuadro-form{
    width: 730px;
    height: 340px;
    display:flex;    
    justify-content: center; 
    align-items: center;  
}

.form {
    background-color: #E5E5E5;
    width: 730px;
    height: 340px;    
    padding: 12px;
    display: flex;
    font-family: 'Gilroy-Reg';
 }


.form_container{
    width: 100%;
    display:grid;
    gap: 8px;
    grid-auto-columns: 100%;
    justify-content: center;   
    padding: 3px;   
}

.row{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 5px;
    
}
.form_cta{
    font-family: 'Gilroy-Reg';
    font-size: 1.5rem;
    font-weight: 100;
    background-color: #CFAF6A;
    color: #59363C;
    font-weight: 400;
    border: none;
    border-radius: 1.1em;
    width: 80%;
    margin: 5px 10%;
    padding: 15px;  
    cursor: pointer;   
}

.form_cta:hover{
    background-color: #CFAF6A;  
    color: #402026;  
    font-weight: bold;
}

.form_cta:disabled,
.form_cta[disabled]{
  filter:grayscale(1);
  cursor: default;
}

.form_cta buttom:disabled,
.form_cta buttom[disabled]{
  filter:grayscale(1);
  cursor: default;
}

.form_input{
    font-family: 'Gilroy-Med';
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8em;
    outline: none;
    border:none;
    border-radius: 0.4em;
    color:#59363C;
    background-color: #ffffff;
    
}


.Formulario .form_input::placeholder {
    color: #59363C;    
  }

.form_input--message{
    resize: none;    
}




/***SLIDER DE CLIENTES**/


.slider {
    width: 30vw; /*600px;*/
    height: 320px;
    margin: auto;
    overflow: hidder;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    flex-direction: column;
}
.slider .NClientes h1{    
    font-size: clamp(14px, 2vw + 1rem, 30px);
    font-family: 'Gilroy-Reg';
    font-weight: 100;
    text-align: center;
    align-content: center;
    justify-content: center;
    color: #402026;
    margin: 30px 0px;
}
.slider .slider-track{  
    display: flex;
    margin: auto;
    align-content: center;
    justify-content: center;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
    width: calc(150px * 10);    /*aqui multiplica por 2 el numero total de logos es decir el total que pegamos en html index*/
}
.slider .sld{
    width: 150px;   
    margin: 5px 10px;   
    object-fit: cover;
    align-content: center; 
}

.slider .sld:hover{
    box-shadow:
    0.5px 0.5px #402026,
    -0.2em 0 0.2em #d0b069;
}


.slider .sld img{
    width: 100%;   
    object-fit: cover;
    padding: 0px 10px;     
}



@keyframes scroll{
    0%{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100%{
        -webkit-transform: translateX(calc(-150px * 5)); /*total de imagenes*/
        transform: translateX(calc(-150px * 5));
    }
}


.LH{
    height: 15px;
    margin: auto;
    align-content: center;
    background: #402026;
    background: linear-gradient(to right, #402026, #ffffff, #d0b06a);
}


/**RECAPTCHA UBICACION**/
/*Mover Recaptcha a la izquierda*/
.grecaptcha-badge {
width: 70px !important;
overflow: hidden !important;
transition: all 0.3s ease !important;
right: 0px !important;
bottom: 47px !important;
}
.grecaptcha-badge:hover {
width: 256px !important;
}

/*****politicas****/



.pp{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    width: 100%;
    height: auto;
    padding: 50px;
    background: rgba(233, 233,233, 10%);
    
}

.pp .Tpp{
    text-align: center;
    padding: 20px 0px;
   
}
.pp h1{
    font-family: 'Gilroy-Reg';
    font-size: clamp(12px, 2vw + 0.8rem, 28px);
    font-weight: bold;
    line-height: 1;
    color: #402026;
}

.pp .TextoPP{ 
    padding:40px 20px; 
}

.pp .TextoPP p{
    font-family: 'Product-Reg';
    font-size: clamp(15px, 2vw + 0.8rem, 19px);
    line-height: 1.5;
    color: #262626;
    text-align: justify;
    padding: 10px 0px;
}

.pp .TextoPP h2{

    font-family: 'Gilroy-Reg';
    font-size: clamp(15px, 2vw + 0.8rem, 21px);
    font-weight: bold;
    line-height: 1;
    text-align: left;
    padding: 30px 0px 10px 0px;
    color: #402026;
}

.pp .TextoPP h3{

    font-family: 'Gilroy-Reg';
    font-size: clamp(15px, 2vw + 0.8rem, 20px);
    font-weight: bold;
    line-height: 1;
    text-align: left;
    padding: 30px 0px 10px 0px;
    color: #402026;
}



/******************************************/

.footerT .footer{
    padding: 30px 30px 10px 30px;
    background-color: #402026;
    display: flex;
    justify-content: left;
    align-items: center;
}

.footerT .footer .logoW{
    margin: 20px;
    margin-left: 90px;
}

.footerT .footer .logoW img{
    width: 80%;
    height: 80%;
    object-fit: cover;

}
.footerT .footer .lineB{
    border-left: 1px solid #f5f5f5;
	height: 112px;
	border-radius: 0.5px 0px 0px 0.5px;
    margin: 10px;
}

.footerT .footer .link{
    margin: 12px;
    color: #ffffff;
    line-height: 1.3;
    font-size: 13px;
    font-family: 'Product';
    font-weight: 100;
    
}

.footerT .derechos{
    padding: 10px;
    background-color: #402026;
	padding: 10px 10px;
    display: flex;
	text-align:center;
	color: #f5f5f5;
    font-family: 'Gilroy-Reg';
    font-weight: 100;
    font-size: 13px;
    border-top: 1px groove #59363C;
    }

.footerT .derechos .politicas{
    width: 92vw;
    height: auto;
    margin: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
}

.footerT .derechos .politicas a{
  text-decoration: none;
  color: #d0b06a;
}
.footerT .derechos .politicas a:hover{
    color: #f5f5f5;
}

.footerT .derechos .pol{
    overflow: hidden;
    display: flex;
    justify-content:center;
}

.footerT .derechos .politicas .pol .ln{
    padding: 0px 10px;
}

/*********************************************************/
/********N O S O T R O S**********************************/
/*********************************************************/

/***********TEXTO IZQ - IMAGEN DERECHA********************/

.sect1-contenedorUS{    
    display: flex;
}

.sect1-contenedorUS .img-sect1US{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect1-contenedorUS .img-sect1US img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect1-contenedorUS .text-sect1US{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #59363C;   
}

.sect1-contenedorUS .text-sect1US h1{
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 1px; 
    font-family: 'Gilroy-Med';
    color: #CFAF6A;  
    padding: 0px 0px 0px 100px;  
    text-align: left;
    letter-spacing: 2.5px;
    
}
.sect1-contenedorUS .text-sect1US p{
    font-size: 42px;
    font-family: 'Gilroy-Reg';
    font-weight: 500; 
    color: #CFAF6A;   
    text-align: left;
    padding: 0px  100px;
    letter-spacing: 0.5px;
}


/***********TEXTO HISTORIA********************/

.sect2-contenedorUS{    
    display: flex;
}

.sect2-contenedorUS .text2-sect1US{
    flex-basis: 30%;
    flex-direction: column;
    justify-content: center;  
    background: #ffffff; 
    margin: 40px 0px 40px 0px;
}


.sect2-contenedorUS .Parrafo2-sect1US{
    flex-basis: 70%;
    position: relative;
    overflow: hidden;
    justify-content: center;  
    margin: 40px 0px 40px 0px;   
}

.sect2-contenedorUS .text2-sect1US h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1px; 
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 30px 125px;     
}

.sect2-contenedorUS .Parrafo2-sect1US p{
    font-size: 16.5px;
    font-family: 'Gilroy-Reg';
    font-weight: 600; 
    color: #4D4D4D; 
    line-height: 1.5;  
    text-align: left;
    padding: 30px 50px;
    padding-right: 150px;
}

/***********TEXTO VALORES********************/

.sect3-contenedorUS{    
    display: flex;
    
}

.sect3-contenedorUS .text3-sect2US{
    flex-basis: 30%;
    flex-direction: column;
    justify-content: center;  
    background: #ffffff; 
    margin: 0;
}

.sect3-contenedorUS .text3-sect2US h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1px; 
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 30px 120px;  
         
}

.sect3-contenedorUS .images-sect2US{
    flex-basis: 67%;
    position: relative;
    overflow: hidden;
    justify-content: center;
    display: flex;  
    padding: 30px 0px 0px 0px; 
    margin: 0px;
}

.sect3-contenedorUS .images-sect2US .val{
    width: 200px;
    height: 200px;
    margin:10px 5px;
    text-align: left;   
}
.sect3-contenedorUS .images-sect2US .val img{
    width: 50px;
    height: 50px;
    margin: 0;
    padding:0;
    object-fit: cover;
}
.sect3-contenedorUS .images-sect2US .val h2{
    font-size: 23px;
    font-weight: 500;
    line-height: 1;
    margin: 10px 0px; 
    font-family: 'Gilroy-Reg';
    color: #402026;  
}


/***********TEXTO MISION VISION********************/

.sect4-contenedorUS{    
    display: flex;
}

.sect4-contenedorUS .text4-sect3US{
    flex-basis: 50%;
    flex-direction: column;
    justify-content: center;  
    background: #E5E5E5;
}


.sect4-contenedorUS .text5-sect4US{
    flex-basis: 50%;
    flex-direction: column;
    justify-content: center;  
    background: #59363C;   
}

.sect4-contenedorUS .text4-sect3US h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1px; 
    font-family: 'Gilroy-Reg';
    color: #59363C;  
    padding: 50px 0px 0px 100px;     
}

.sect4-contenedorUS .text4-sect3US p{
    font-size: 17px;
    font-family: 'Product-Reg';
    color: #59363C; 
    line-height: 1.5;  
    padding: 20px 10px 70px 100px;
    text-align: left;
}


.sect4-contenedorUS .text5-sect4US h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1px; 
    font-family: 'Gilroy-Reg';
    color: #CFAF6A;  
    padding: 50px 20px 0px 60px;   
}

.sect4-contenedorUS .text5-sect4US p{
    font-size: 17px;
    font-family: 'Product-Reg';    
    color: #CFAF6A; 
    line-height: 1.5;  
    text-align: left;
    padding: 20px 80px 70px 60px;
    text-align: left;
}

/*********************************************************/
/******** F I N ****N O S O T R O S***********************/
/*********************************************************/
/*********************************************************/
/*******************C O N T A C T O***********************/
/*********************************************************/

/***********SECTION CONTACT********************/

.Formulario2{    
    display: flex;
}

.Formulario2 .text-form2{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content:end;    
    align-items:flex-start;
    position: relative;
    overflow: hidden;
}


.Formulario2 .cuadro-form2{
    flex-basis: 50%;
    flex-direction: column;
    justify-content: center; 
    align-content: center; 
    background: #59363C; 
    padding: 0px 70px;
}

.Formulario2 .text-form2 h1{
    width: 520px;
    height: 135px;
    padding: 30px 16px 30px 120px;
    margin-bottom: 103px;
    font-size: 25px; 
    font-weight: 300;  
    line-height: 1.3;
    color: #FFFFFF;
    background-color: rgb(89, 54, 60, 0.70);
    /***/
    position:absolute;
    /**/
    font-family: 'Gilroy-Reg';
    font-weight: 400; 
    color: 59363C;    
    letter-spacing: 1.2px;
}

.Formulario2 .text-form2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.Formulario2 .cuadro-form2 h1{
    font-size: 43px;
    font-weight: 400;
    line-height: 1.2;     
    font-family: 'Gilroy-Reg';
    color: #CFAF6A;  
    text-align: center;
    letter-spacing: 1.5px;
    margin-bottom: 60px;
    
}

.Formulario2 .form {
    width: 100%;
    height: 340px;    
    padding: 12px;
    display: flex;
    font-family: 'Gilroy-Reg';
    background: #59363C;
 }

.Formulario2 .form_container{
    width: 100%;
    display:grid;
    gap: 8px;
    grid-auto-columns: 100%;
    justify-content: center;   
    padding: 3px;   
}

.Formulario2 .form_cta{
    font-family: 'Gilroy-Reg';
    font-size: 1.3rem;
    font-weight: 100;
    background-color: #CFAF6A;
    color: #402026;
    font-weight: 400;
    border: none;
    border-radius: 1.1em;
    width: 100%;
    margin: 5px;
    padding: 10px;  
    cursor: pointer;   
}


.Formulario2 .form_cta:hover{
    background-color: #CFAF6A;  
    color: #402026;  
    font-weight: bold;
}

.Formulario2 .form_input{
    font-family: 'Gilroy-Med';
    font-weight: 200;
    font-size: 1rem;
    padding: 0.8em;
    outline: none;
    border:none;
    border-radius: 0.4em;
    color:white;
    background-color: rgb(255, 255, 255, 0.4);    
}

.Formulario2 .form_input::placeholder {
    color:white;    
  }

.form_input--message{
    resize: none;    
}


/***********TEXTO IZQ - IMAGEN DERECHA PRESIDENT********************/

.sect-contenedorContact{    
    display: flex;
  
}

.sect-contenedorContact .img-sectContact{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
    margin: 150px 0px;
}

.sect-contenedorContact .img-sectContact img{
    width: 50%;
    height: 80%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect-contenedorContact .text-sectContact{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #ffffff;   
    margin: 150px 0px;
}

.sect-contenedorContact .text-sectContact h1{
    font-size: 42px;
    line-height: 1.2;
    font-weight: 200;
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 100px 0px 0px;  
    text-align: right;   
}

.sect-contenedorContact .img-sectContact h1{
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    font-family: 'Product';
    color: #4D4D4D;  
    padding: 0px 90px 0px 0px;  
    text-align:  left;
    letter-spacing: 1.3px;
}

.sect-contenedorContact .img-sectContact h2{
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    font-family: 'Product-Reg';
    color: #4D4D4D;  
    padding: 0px 90px 0px 0px;  
    text-align:  left;
    letter-spacing: 1px;
}

/*********************************************************/
/*******F I N*********C O N T A C T O*********************/
/*********************         ***************************/
/*********************************************************/
/***************I N D U S T R I A S***********************/
/*********************************************************/


/***********TEXTO ********************/
.sect-contenedorIn{
    display: flex;
    width: 100%;
    height: 250px;
    background-color: #f1f1f1;
}

.text-sectIn{
    width: 50%;
    height: 250px;
    position: relative;
    overflow: hidden;    
    display: flex;
}

.text-sectIn h1{    
    font-size: 42px;
    line-height: 1.2;
    font-weight: 200;
    font-family: 'Gilroy-Reg';
    color: #402026;  
    text-align: left;
    align-content: center;
    padding-left: 150px;
}

/***********IMG - TEXTO MANUFACTURA********************/

.sect1-contenedorIn{
    display: flex;
}

.sect1-contenedorIn .img1-sectIn{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect1-contenedorIn .img1-sectIn img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect1-contenedorIn .text1-sectIn{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: end;  
    background: #59363C;   
}

.sect1-contenedorIn .text1-sectIn h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Gilroy-Reg';
    color: #f1f1f1;  
    margin: 0px 120px 30px 50px;
    text-align: left;
    letter-spacing: 2.5px;
}

.sect1-contenedorIn .text1-sectIn p{

    font-size: 19px;
    font-family: 'Product-Reg';
    font-weight: 200; 
    color: #CBCBCB;   
    text-align: left;   
    margin: 0px 120px 50px 50px;
    letter-spacing: 0.5px;
}

/***********IMG - TEXTO TRANSPORTE Y LOGISTICA********************/

.sect2-contenedorIn{
    display: flex;
}

.sect2-contenedorIn .text2-sectIn{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: end;  
    background: #CFAF6A; 
}

.sect2-contenedorIn .text2-sectIn h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Gilroy-Reg';
    color: #402026;  
    margin: 0px 50px 30px 140px;
    text-align: left;
    letter-spacing: 2.5px;
}

.sect2-contenedorIn .text2-sectIn p{
    font-size: 19px;
    font-family: 'Product-Reg';
    font-weight: 100;
    color: #402026;   
    text-align: left;
    margin: 0px 120px 90px 140px;
    letter-spacing: 0.5px;
}


.sect2-contenedorIn .img2-sectIn{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect2-contenedorIn .img2-sectIn img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

/***********IMG - TEXTO TECNOLOGIA MEDIOS********************/

.sect3-contenedorIn{
    display: flex;
}

.sect3-contenedorIn .img3-sectIn{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect3-contenedorIn .img3-sectIn img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect3-contenedorIn .text3-sectIn{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: end;  
    background: #402026;   
}

.sect3-contenedorIn .text3-sectIn h1{
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1px; 
    font-family: 'Gilroy-Reg';
    color: #CFAF6A;  
    padding: 0px 110px 30px 90px;  
    text-align: left;
    letter-spacing: 2.5px;

}

.sect3-contenedorIn .text3-sectIn p{
    font-size: 19px;
    font-family: 'Product-Reg';
    font-weight: 100; 
    color: #CFAF6A;   
    text-align: left;
    padding: 0px 110px 100px 90px;  
    letter-spacing: 0.5px;

}

/***********IMG - TEXTO SECTOR FINANCIER********************/

.sect4-contenedorIn{
    display: flex;
}

.sect4-contenedorIn .text4-sectIn{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: end;  
    background: #59363C; 
}

.sect4-contenedorIn .text4-sectIn h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Gilroy-Reg';
    color: #F1F1F1;  
    margin: 0px 50px 30px 140px;
    text-align: left;
    letter-spacing: 2.5px;
}

.sect4-contenedorIn .text4-sectIn p{
    font-size: 19px;
    font-family: 'Product-Reg';
    font-weight: 200; 
    color: #CBCBCB;   
    text-align: left;
    margin: 0px 120px 90px 140px;
    letter-spacing: 0.5px;
}


.sect4-contenedorIn .img4-sectIn{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect4-contenedorIn .img4-sectIn img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

/***********IMG - TEXTO SERV PROFESIONALES*******************/

.sect5-contenedorIn{
    display: flex;
}

.sect5-contenedorIn .img5-sectIn{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect5-contenedorIn .img5-sectIn img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect5-contenedorIn .text5-sectIn{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: end;  
    background: #CFAF6A;   
}

.sect5-contenedorIn .text5-sectIn h1{
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Gilroy-Reg';
    color: #402026;  
    margin: 0px 130px 30px 50px;
    text-align: left;
    letter-spacing: 2.5px;
}

.sect5-contenedorIn .text5-sectIn p{
    font-size: 19px;
    font-family: 'Product-Reg';
    font-weight: 200; 
    color: #402026;   
    text-align: left;
    margin: 0px 130px 80px 50px;
    letter-spacing: 0.5px;
}

/*********************************************************/
/*****************S E R V I C I O S***********************/
/**********************       ****************************/

/************************AUDITORIA Y ASEOSRAMIENTO ****/

.sect1-contenedorSer{    
    display: flex;
}

.sect1-contenedorSer .img1-sectSer{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect1-contenedorSer.img1-sectSer img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect1-contenedorSer .text1-sectSer{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: end;  
    background: #59363C; 
    margin-bottom: 5px;  
}

.sect1-contenedorSer .text1-sectSer h1{
    font-size: 45px;
    font-weight: bold;
    line-height: 1;
    font-family: 'Gilroy-Reg';
    color: #CFAF6A;  
    padding: 0px 100px 0px 100px;  
    text-align: left;
    letter-spacing: 2.5px;
    
}
.sect1-contenedorSer .text1-sectSer p{
    font-size: 38px;
    font-family: 'Gilroy-Reg';
    font-weight: 500; 
    color: #CFAF6A;   
    text-align: left;
    padding: 0px  100px 80px 100px;
    letter-spacing: 0.5px;
}

/************************REVISORIA FISCAL ****/

.sect2-contenedorSer{
    display: flex;    
}

.sect2-contenedorSer .text2i-sectSer{
    flex-basis: 40%;
    display:flex;
    flex-direction: column;
    justify-content: start;  
    background: #FFFFFF;  
    margin: 50px 0px 50px 50px;
   
}
.sect2-contenedorSer .text2i-sectSer h1{
    font-size: clamp(43px, 2vw + 1rem, 50px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px; 
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 0px 0px 55px;  
    text-align: left;
    letter-spacing: 1.5px;
}

.sect2-contenedorSer .text2i-sectSer p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 400; 
    line-height: 1.2;
    color: #4D4D4D;   
    text-align: left;
    padding: 0px  80px 0px 55px;
    letter-spacing: 0.5px;
}

.sect2-contenedorSer .text2d-sectSer{
    flex-basis: 60%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #FFFFFF; 
    margin: 110px 50px 50px 0px;
}

.sect2-contenedorSer .text2d-sectSer h1{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px; 
    font-family: 'Product-Reg';
    color: #402026;       
    text-align: left;
    letter-spacing: 2.5px;
    
}

.sect2-contenedorSer .text2d-sectSer .listaSer{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 200; 
    color: #4D4D4D;   
    text-align: justify;
    padding: 0px 0px 30px 45px; 
    letter-spacing: 0.5px;
   
}

.sect2-contenedorSer .text2d-sectSer .listaSer ul{
    margin: 0px 20px;
    text-align: left;
}

/************************AUDITORIA EXTERNA ****/

.sect3-contenedorSer{
    display: flex;
}

.sect3-contenedorSer .img3-sectSer{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect3-contenedorSer .img3-sectSer img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect3-contenedorSer .text3-sectSer{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #f1f1f1; 
}

.sect3-contenedorSer .text3-sectSer h1{
    font-size: 41px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 30px; 
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 70px;  
    text-align: left;
    letter-spacing: 1.5px;
}
.sect3-contenedorSer .text3-sectSer p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 400; 
    color: #4D4D4D;   
    text-align: left;
    padding: 0px 110px 0px 70px;
    letter-spacing: 0.5px;

}

/************************AUDITORIA intTERNA ****/

.sect4-contenedorSer{
    display: flex;
}

.sect4-contenedorSer .text4-sectSer{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #ffffff; 
}

.sect4-contenedorSer .text4-sectSer h1{
    font-size: 41px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 30px; 
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 80px;  
    text-align: left;
    letter-spacing: 1.5px;
}

.sect4-contenedorSer .text4-sectSer p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 400; 
    color: #4D4D4D;   
    text-align: left;
    padding: 0px 170px 0px 80px;
    letter-spacing: 0.5px;
}

.sect4-contenedorSer .img4-sectSer{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}


.sect4-contenedorSer .img4-sectSer img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

/*--------------TEXTO REVSIONES LIMITADAS FINANCIERAS--------------*/

.sect5-contenedorSer{
    display: flex;
}

.sect5-contenedorSer .img5-sectSer{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect5-contenedorSer .img5-sectSer img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect5-contenedorSer .text5-sectSer{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #402026; 
}
.sect5-contenedorSer .text5-sectSer h1{
    font-size: 41px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 30px; 
    font-family: 'Gilroy-Reg';
    color: #CFAF6A;  
    padding: 0px 80px;  
    text-align: left;
    letter-spacing: 1.5px;
}
.sect5-contenedorSer .text5-sectSer p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 400; 
    color: #CFAF6A;   
    text-align: left;
    padding: 0px 170px 0px 80px;
    letter-spacing: 0.5px;
}

/*<!--------------TEXTO Procedimientos previamente convenidos------------->*/

.sect6-contenedorSer{
    display: flex;
}

.sect6-contenedorSer .text6-sectSer{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #f1f1f1; 
}

.sect6-contenedorSer .text6-sectSer h1{
    font-size: 41px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px; 
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 85px;  
    text-align: left;
    letter-spacing: 1.5px;
}

.sect6-contenedorSer .text6-sectSer p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 400; 
    color: #4D4D4D;   
    text-align: left;
    padding: 0px 150px 0px 85px;
    letter-spacing: 0.5px;
}

.sect6-contenedorSer .img6-sectSer{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect6-contenedorSer .img6-sectSer img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}


/*********************************************************/
/*************S E R V I C I O S***D O S*******************/
/**********************       ****************************/

/************************SERVICIOS LEGALES ****/
.sect6-contenedorSleg{
    display: flex;
}

.sect6-contenedorSleg .img6-sectSleg{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect6-contenedorSer .img6-sectSLeg img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect6-contenedorSleg .text6-sectSleg{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: end;  
    background: #59363C; 
    margin-bottom: 4px;  
}

.sect6-contenedorSleg .text6-sectSleg h1{
    font-size: 45px;
    font-weight: bold;
    line-height: 1;
    font-family: 'Gilroy-Reg';
    color: #CFAF6A;  
    padding: 0px 170px 0px 100px;  
    text-align: left;
    letter-spacing: 2.5px;
    
}
.sect6-contenedorSleg .text6-sectSleg p{
    font-size: 38px;
    font-family: 'Gilroy-Reg';
    font-weight: 500; 
    color: #CFAF6A;   
    text-align: left;
    padding: 0px  100px 80px 100px;
    letter-spacing: 0.5px;
}

/************************DERECHO LABORAL ****/
.sect7-contenedorSleg {
    display: flex;
   
}

.sect7-contenedorSleg .text7-sectSleg{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: end;  
    background: #ffff; 
    margin-bottom: 5px; 
    margin: 80px 0px 80px 100px;
}

.sect7-contenedorSleg .text7-sectSleg h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 100px 20px 20px;  
    text-align: left;
    letter-spacing: 1.5px;
}
.sect7-contenedorSleg .text7-sectSleg p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 500; 
    color: #402026;   
    text-align: left;
    padding: 0px 70px 50px 20px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.sect7-contenedorSleg .img7-sectSleg{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
    margin: 80px 100px 80px 0px;
}

.sect7-contenedorSleg .img7-sectSLeg img{
    width: 30%;
    height: 30%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

/*<!--------------TEXTO SAGRILAF-PTEE-------------->*/

.sect8-contenedorSer{
    display: flex;
    background: #F1F1F1;  
    
}

.sect8-contenedorSer .text8-sectSer1{
    flex-basis: 50%;
    display:flex;
    margin: 40px 0px;
    flex-direction: column;
    justify-content: center;  
    
   
}

.sect8-contenedorSer .text8-sectSer2{
    flex-basis: 50%;
    display:flex;
    margin: 40px 0px;
    flex-direction: column;
    justify-content: center;  
}

.sect8-contenedorSer .text8-sectSer1 h1
{
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 0px 20px 117px; 
    text-align: left;
    letter-spacing: 1.5px;
}


.sect8-contenedorSer .text8-sectSer1 h2{
    font-size: clamp(19px, 0.5vw + 0.5rem, 30px);
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Product-Reg';
    color: #402026;  
    padding: 0px 0px 20px 117px;  
    text-align:  left;
    letter-spacing: 1px;
}


.sect8-contenedorSer .text8-sectSer1 p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 500; 
    color: #402026;   
    text-align: left;
    padding: 0px 90px 50px 117px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.sect8-contenedorSer .text8-sectSer2 h2{
    font-size: clamp(19px, 1vw + 0.5rem, 30px);
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Product-Reg';
    color: #402026;  
    padding: 50px 0px 20px 0px;  
    text-align:  left;
    letter-spacing: 1px;
}


.sect8-contenedorSer .text8-sectSer2 p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 500; 
    color: #402026;   
    text-align: left;
    padding: 0px 200px 50px 0px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/*<!--------------TEXTO LITIGIOS-------------->*/

.sect9-contenedorSer {
    display: flex;
}

.sect9-contenedorSer .img9-sectSer{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center; 
    align-content: left;    
    margin: 40px 0px 40px 110px;  
}

.sect9-contenedorSer .img9-sectSer img{
    width: 90%;
    height: 90%;
    margin: 0px;
    padding:40px 40px 40px 0px;  
    object-fit: cover;  
}

.sect9-contenedorSer .text9-sectSer{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #ffff; 
    margin-bottom: 5px; 
    margin: 40px 100px 40px 0px; 
}

.sect9-contenedorSer .text9-sectSer h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 100px 20px 0px;  
    text-align: left;
    letter-spacing: 1.5px;

}

.sect9-contenedorSer .text9-sectSer p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 500; 
    color: #402026;   
    text-align: left;
    padding: 0px 80px 50px 0px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}
/*<!--------------Societario y o comercial------------->*/

.sect10-contenedorSleg{
    display: flex;
}

.sect10-contenedorSleg .img10-sectSleg{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect10-contenedorSleg .img10-sectSleg img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect10-contenedorSleg .text10-sectSleg{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #402026; 
}
.sect10-contenedorSleg .text10-sectSleg h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 35px; 
    font-family: 'Gilroy-Reg';
    color: #CFAF6A;  
    padding: 0px 90px 0px 80px;  
    text-align: left;
    letter-spacing: 1.5px;
}

.sect10-contenedorSleg .text10-sectSleg p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 400; 
    color: #CFAF6A;   
    text-align: left;
    padding: 0px 120px 0px 80px;
    letter-spacing: 0.5px;
}

/*<!--------------DERECHO TRIBUTARIO------------->*/

.sect11-contenedorSleg {
    display: flex;   
}

.sect11-contenedorSleg .img11-sectSleg{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center; 
    align-content: left;
    margin: 40px 0px 40px 110px;
}

.sect11-contenedorSleg .img11-sectSleg img{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding:40px 40px 40px 0px;  
    object-fit: cover;  
}

.sect11-contenedorSleg .text11-sectSleg{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #ffff; 
    margin-bottom: 5px; 
    margin: 40px 110px 40px 0px;
}

.sect11-contenedorSleg .text11-sectSleg h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 100px 20px 0px;  
    text-align: left;
    letter-spacing: 1.5px;

}

.sect11-contenedorSleg .text11-sectSleg p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 500; 
    color: #402026;   
    text-align: left;
    padding: 0px 110px 50px 0px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/*********************************************************/
/*************S E R V I C I O S***T R E S*****************/
/**********************       ****************************/
/************************SERVICIOS TRIBUTARIOS ****/
.sect12-contenedorStri{
    display: flex;
}

.sect12-contenedorStri .img12-sectStri{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect12-contenedorStri .img12-sectStri img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect12-contenedorStri .text12-sectStr{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: end;  
    background: #59363C; 
    /*margin-bottom: 4px; */ 
}

.sect12-contenedorStri .text12-sectStr h1{
    font-size: 45px;
    font-weight: bold;
    line-height: 1;
    font-family: 'Gilroy-Reg';
    color: #CFAF6A;  
    padding: 0px 170px 0px 100px;  
    text-align: left;
    letter-spacing: 2.5px;
    
}
.sect12-contenedorStri .text12-sectStr p{
    font-size: 38px;
    font-family: 'Gilroy-Reg';
    font-weight: 500; 
    color: #CFAF6A;   
    text-align: left;
    padding: 0px  100px 80px 100px;
    letter-spacing: 0.5px;
}

/*<!--------------CONSUTRIA TRIBUTARIA-------------->*/

.sect13-contenedorStri {
    display: flex;
    background: #F1F1F1;
    
}

.sect13-contenedorStri .img13-sectStri{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center; 
    align-content: left;
    margin: 40px 0px 0px 110px;  
}

.sect13-contenedorStri .img13-sectStri img{
    width: 90%;
    height: 90%;
    margin: 0px;
    padding:40px 40px 40px 0px;    
    object-fit: cover;
}

.sect13-contenedorStri .text13-sectStri{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #f1f1f1; 
    margin-bottom: 5px; 
    margin: 40px 110px 0px 0px;  
}

.sect13-contenedorStri .text13-sectStri h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 100px 20px 0px;  
    text-align: left;
    letter-spacing: 1.5px;

}

.sect13-contenedorStri .text13-sectStri p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 500; 
    color: #402026;   
    text-align: left;
    padding: 0px 80px 50px 0px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/*<!--------------TEXTO PLANEACION TRIBUTARIA ------------->*/

.sect14-contenedorStri{
    display: flex;
    
}

.sect14-contenedorStri .text14i-sectStri{
    flex-basis: 35%;
    display:flex;
    flex-direction: column;
    justify-content: start;  
    background: #FFFFFF;  
    margin: 50px 0px 50pX 60px;
}
.sect14-contenedorStri .text14i-sectStri h1{
    font-size: 43px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px; 
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 20px 0px 55px;  
    text-align: left;
    letter-spacing: 1.5px;
}

.sect14-contenedorStri .text14i-sectStri p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 400; 
    line-height: 1.5;
    color: #402026;   
    text-align: left;
    padding: 0px  150px 0px 55px;
    letter-spacing: 0.5px;
}

.sect14-contenedorStri .text14d-sectStri{
    flex-basis: 64%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #FFFFFF; 
    margin: 75px 0px 60pX 0px;
}


.sect14-contenedorStri .text14d-sectStri .listaStri{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 200; 
    color: #402026;   
    text-align: justify;
    padding: 80px 170px 30px 0px; 
    letter-spacing: 0.5px;
    line-height: 1.5;
   
}

.sect14-contenedorStri .text2d-sectSer .listaSer ul{
    margin: 0px 20px;
    text-align: left;
}

/*<!--------------PRECIOS DE TRANSFERENCIA-------------->*/

.sect15-contenedorStri {
    display: flex;
    background: #F1F1F1;    
}

.sect15-contenedorStri .img15-sectStri{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center; 
    align-content: left;
    margin: 40px 0px 0px 110px; 
}
    

.sect15-contenedorStri .img15-sectStri img{
    width: 100%;
    height: 90%;
    margin: 0px;
    padding:40px 40px 0px 0px; 
    object-fit: cover;   
}

.sect15-contenedorStri .text15-sectStri{
    flex-basis: 50%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #f1f1f1; 
    margin-bottom: 0px; 
    margin: 40px 110px 0px 0px;  
}

.sect15-contenedorStri .text15-sectStri h1{
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 20px 20px 0px;  
    text-align: left;
    letter-spacing: 1.5px;

}

.sect15-contenedorStri .text15-sectStri p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 500; 
    color: #402026;   
    text-align: left;
    padding: 0px 150px 0px 0px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/*<!--------------TEXTO Devoluciones y compensaciones de impuestos------------->*/

.sect16-contenedorStri{
    display: flex;
}

.sect16-contenedorStri .text16-sectStri{
    flex-basis: 48%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #f1f1f1; 
}

.sect16-contenedorStri .text16-sectStri h1{
    font-size: 41px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px; 
    font-family: 'Gilroy-Reg';
    color: #402026;  
    padding: 0px 120px 0px 150px;  
    text-align: left;
    letter-spacing: 1.5px;
}

.sect16-contenedorStri .text16-sectStri p{
    font-size: clamp(16px, 1vw + 0.5rem, 20px);
    font-family: 'Product-Reg';
    font-weight: 400; 
    color: #4D4D4D;   
    text-align: left;
    line-height: 1.2;
    padding: 0px 110px 0px 150px;
    letter-spacing: 0.5px;
}

.sect16-contenedorStri .img16-sectStri{
    flex-basis: 52%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.sect16-contenedorStri .img16-sectStri img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}



/*********RESPONSIVE******************/

/*completo*/

/**RANGO**ok030525* */
@media(min-width:901px) and (max-width:1120px){ 

    /***HOME*/
       
    .header-contenido{
        width: 100%;
        height: 450px;    
        
    }
    .Enlace{
        width: 30%;
        height: 230px;        
    }

    
    .Enlace h1{
        font-size: 25px;
        transform: translateY(120px);     
    }
    
    .Enlace .lista{
        font-size: 12px; 
        width: 100%;
        padding: 10px 10px;
        transform: translateY(150px);    
    }
    
    .Enlace:hover h1{
        transform: translateY(-1px);
        font-size: 15px;  
        padding: 20px 0px 0px 0px;
    }
    
    
    .Enlace:hover .lista{
        transform: translateY(-1px);
        transition: all 500ms;   
    }
    
    /***imagenes x 5*/
    .images .imag h2{    
        font-size: 18x;      
        padding: 10px;
    }
    
    /******************CONTACTENOS HOME************************/
    
    .Formulario{
        height: 350px;   
    }
    
    .Formulario .text-form{ 
        flex-basis:37%;
        
    }
    
    .Formulario .text-form h1{
        width: 350px;
        height: 300px;
        padding: 38px;
        font-size: 35px;   
     }
    
     .Formulario .cuadro-form{
        width: 600px;
        height: 300px;
    }
    
    .form { 
        width: 600px;
        height: 300px;
     }
    
    .form_cta{
        font-size: 18px;
        margin: 5px 10%;
        padding: 10px; 
        font-weight: bold;    
    }
    
    .form_input{
        font-size: 15px;
        padding: 0.8em;   
    }
        



    
    /***NOSOTROS****/
    
    /***********TEXTO IZQ - IMAGEN DERECHA********************/
    .sect1-contenedorUS .text-sect1US h1{
        font-size: 22px;
        padding: 0px 0px 0px 75px;  
        
    }
    .sect1-contenedorUS .text-sect1US p{
        font-size: 30px;
        padding: 0px  90px 0px 75px;    
    }

    /***********TEXTO HISTORIA********************/
    .sect2-contenedorUS .text2-sect1US h1{
        font-size: 30px;
        padding: 0px 70px;     
    }
    
    .sect2-contenedorUS .Parrafo2-sect1US p{
        font-size: 15px;
        padding: 0px 0px;
        padding-right: 20px;
        text-align: left;        
    }
    
    /***********TEXTO VALORES********************/
    .sect3-contenedorUS .text3-sect2US h1{
        font-size: 30px;
        padding: 0px 70px;          
    }
    
    .sect3-contenedorUS .images-sect2US{
        padding: 0px 10px 0px 0px; 
        margin: 0px;
        justify-content: space-between; 
    }
    
    .sect3-contenedorUS .images-sect2US .val{
        width: 95px;
        height: 100px;
        margin: 0px 0px;
        text-align: left;            
    }
    
    .sect3-contenedorUS .images-sect2US img{
        width: 3px;
        height: 30px;
        margin: 0;
        padding:0;
        object-fit: cover;
    }
    
    .sect3-contenedorUS .images-sect2US .val h2{
        font-size: 15px;    
    }
    /***********TEXTO MISION VISION********************/
    
    .sect4-contenedorUS .text4-sect3US {
        height: 250px;
        padding: 0px;
    }
    .sect4-contenedorUS .text5-sect4US{
        height: 250px;
        padding: 0px;    
    }
    .sect4-contenedorUS .text4-sect3US h1,
    .sect4-contenedorUS .text5-sect4US h1{
        font-size: 30px;
        padding: 0px;
        padding: 40px 10px 20px 70px;      
    }
    .sect4-contenedorUS .text4-sect3US p,
    .sect4-contenedorUS .text5-sect4US p{
        font-size: 15px;
        margin: 0px;
        padding: 0px;
        padding: 0px 45px 20px 70px;
    }
    /*********************************************************/
    
    /*******************C O N T A C T O***********************/
    
    /***********SECTION CONTACT********************/
    
    .Formulario2 .cuadro-form2{ /*tamaño contenedor formulario*/
        padding: 0px 0px;
    }
    
    .Formulario2 .text-form2 h1{ /*texto de la imagen*/
        width: 430px;
        height: 120px;
        padding: 20px 10px 0px 60px;
        margin-bottom: 90px;
        font-size: 20px; 
    }
    
    .Formulario2 .cuadro-form2 h1{/*titulo formulario*/
        font-size: 35px;
        padding: 25px;
        margin: 0px;
        
    }
    
    .Formulario2 .form {
        width: 100%;
        height: 280px;    
        padding: 0px;
     }
    
    .Formulario2 .form_container{   
        gap: 4px;  
        padding: 0px 30px;
        margin: 0px;
        
    }
    
    .Formulario2 .form_cta{    
        font-size: 18px;     
        padding: 8px 0px;
        width: 98%;
    }
    
    .Formulario2 .form_input{
        font-size: 15px;  
        margin: 0px;  
        padding: 5px;
    }
    
    .form_input--message{
        margin: 0px;
        /*padding: 5px;*/
        height: 80px;  
    }
    
    /***********TEXTO IZQ - IMAGEN DERECHA PRESIDENT********************/
    
    .sect-contenedorContact .img-sectContact{
        margin: 50px 0px 30px 0px;
    }
    
    .sect-contenedorContact .text-sectContact h1{    
        font-size: 38px; 
    }
    
    .sect-contenedorContact .img-sectContact h1{
        font-size: 15px;
        padding: 5px 0px 0px 2px;  
    }
    
    .sect-contenedorContact .img-sectContact h2{
        font-size: 12px;
        padding: 0px 0px 0px 0px;  
        line-height: 1.5;
    }
    
    /***************I N D U S T R I A S***********************/
    
    /***********TEXTO ********************/
    .sect-contenedorIn{
        height: 150px;
    }
    
    .text-sectIn{   
        height: 150px;    
    }
    
    .text-sectIn h1{    
        font-size: 32px;
        padding-left: 80px;
    }
    
    /***********IMG - TEXTO MANUFACTURA********************/
    
    .sect1-contenedorIn .text1-sectIn h1{
        font-size: 30px;
        margin: 0px 90px 30px 35px;
    }
    
    .sect1-contenedorIn .text1-sectIn p{
        font-size: 15px;
        margin: 0px 80px 50px 35px;
    }
    
    /***********IMG - TEXTO TRANSPORTE Y LOGISTICA********************/
    .sect2-contenedorIn .text2-sectIn h1{
        font-size: 30px;
        margin: 0px 50px 20px 80px;
    }
    
    .sect2-contenedorIn .text2-sectIn p{
        font-size: 15px;
        margin: 0px 60px 40px 80px;
        font-weight: 400;
    }
    /***********IMG - TEXTO TECNOLOGIA MEDIOS********************/
    .sect3-contenedorIn .text3-sectIn h1{
        font-size: 30px;    
        padding: 0px 40px 20px 40px;  
    }
    
    .sect3-contenedorIn .text3-sectIn p{
        font-size: 15px;    
        padding: 0px 50px 30px 40px;  
    }
    
    /***********IMG - TEXTO SECTOR FINANCIER********************/
    .sect4-contenedorIn .text4-sectIn h1{
        font-size: 30px;
        margin: 0px 30px 20px 70px;    
    }
    .sect4-contenedorIn .text4-sectIn p{
        font-size: 15px;
        margin: 0px 50px 40px 70px;    
    }
    /***********IMG - TEXTO SERV PROFESIONALES*******************/
    .sect5-contenedorIn .text5-sectIn h1{
        font-size: 30px;
        margin: 0px 100px 10px 40px;
    }
    .sect5-contenedorIn .text5-sectIn p{
        font-size: 15px;    
        margin: 0px 80px 40px 40px; 
        line-height: 1;   
    }
    /*****************S E R V I C I O S***********************/
    /**********************       ****************************/
    /************************AUDITORIA Y ASEOSRAMIENTO ****/
    .sect1-contenedorSer .text1-sectSer h1{
        font-size: 35px;    
        padding: 0px 100px 0px 50px;      
    }
    .sect1-contenedorSer .text1-sectSer p{
        font-size: 30px;
        padding: 0px  100px 40px 50px;    
    }
    /************************REVISORIA FISCAL ****/
    .sect2-contenedorSer .text2i-sectSer h1{
        font-size: 30px;
        padding: 0px 0px 0px 20px;  
    }
    .sect2-contenedorSer .text2i-sectSer p{
        font-size: 15px;    
        padding: 0px  0px 0px 20px;    
    }
    .sect2-contenedorSer .text2d-sectSer{
        margin-top: 95px;    
    }
    .sect2-contenedorSer .text2d-sectSer h1{
        font-size: 18px;  
        letter-spacing: 0px; }
    
    .sect2-contenedorSer .text2d-sectSer .listaSer{
        font-size: 15px;
        padding: 0px 0px 10px 45px; 
        letter-spacing: 0px;   
    }
    /************************AUDITORIA EXTERNA ****/
    .sect3-contenedorSer .text3-sectSer h1{
        font-size: 30px;
        margin-bottom: 10px;   
        padding: 0px 40px;  
        letter-spacing: 1px;
    }
    .sect3-contenedorSer .text3-sectSer p{
        font-size: 15px;
        padding: 0px 50px 0px 40px;
        letter-spacing: 0px;
    }
    /************************AUDITORIA EXTERNA ****/
    .sect4-contenedorSer .text4-sectSer h1{
        font-size: 30px;   
        padding: 0px 60px 15px 60px;   
        letter-spacing: 1px;
        margin: 0px;
    }
    .sect4-contenedorSer .text4-sectSer p{
        font-size: 15px;
        padding: 0px 70px 0px 60px;
        letter-spacing: 0px;
    }
    /*--------------TEXTO REVSIONES LIMITADAS FINANCIERAS--------------*/
    .sect5-contenedorSer .text5-sectSer h1{
        font-size: 30px;
        margin-bottom: 10px;   
        padding: 0px 40px; 
        letter-spacing: 1px;
    }
    .sect5-contenedorSer .text5-sectSer p{
        font-size: 15px;    
        padding: 0px 90px 0px 40px;
        letter-spacing: 0px;
        font-weight: 100;
    }
    /*<!--------------TEXTO Procedimientos previamente convenidos------------->*/
    .sect6-contenedorSer .text6-sectSer h1{
        font-size: 30px;
        margin-bottom: 10px; 
        padding: 0px 20px 0px 60px;  
        letter-spacing: 0px;
    }
    .sect6-contenedorSer .text6-sectSer p{
        font-size: 15px;
        padding: 0px 60px 0px 60px;
        letter-spacing: 0px;
    }
    .sect6-contenedorSer .img6-sectSer{
        flex-basis: 50%;
        position: relative;
        overflow: hidden;
        justify-content: center;
    }
    .sect6-contenedorSer .img6-sectSer img{
        width: 100%;
        height: 100%;
        margin: 0;
        padding:0;
        object-fit: cover;
    }
    /*********************************************************/
    /*************S E R V I C I O S***D O S*******************/
    /************************SERVICIOS LEGALES ****/
    .sect6-contenedorSleg .text6-sectSleg h1{
        font-size: 35px;
        padding: 0px 100px 0px 50px;     
    }
    .sect6-contenedorSleg .text6-sectSleg p{
        font-size: 30px;
        padding: 0px 100px 40px 50px;
    }
    /************************DERECHO LABORAL ****/
    .sect7-contenedorSleg .text7-sectSleg{
        margin: 40px 0px 80px 100px;
    }
    .sect7-contenedorSleg .text7-sectSleg h1{
        font-size: 30px; 
        margin: 0px;
        padding: 0px 100px 20px 0px;  
        letter-spacing: 1px;
    }
    .sect7-contenedorSleg .text7-sectSleg p{
        font-size: 15px;
        padding: 0px 80px 50px 0px;
        letter-spacing: 0px;    
    }
    .sect7-contenedorSleg .img7-sectSleg{    
        margin: 40px 50px 80px 0px;
    }
    /*<!--------------TEXTO SAGRILAF-PTEE-------------->*/
    .sect8-contenedorSer .text8-sectSer1{
        margin: 40px 0px;  
    }
    .sect8-contenedorSer .text8-sectSer2{
        margin: 40px 0px;
    }
    .sect8-contenedorSer .text8-sectSer1 h1
    {   
        font-size: 30px;
        padding: 0px 10px 20px 80px; 
    }
    .sect8-contenedorSer .text8-sectSer1 h2{
        font-size: 18px;  
        padding: 0px 0px 15px 80px; 
        letter-spacing: 0px; 
    }
    .sect8-contenedorSer .text8-sectSer1 p{
        font-size: 15px;    
        padding: 0px 45px 50px 80px;
        letter-spacing: 0px;
        line-height: 1.2;
    }
    .sect8-contenedorSer .text8-sectSer2 h2{
        font-size: 18px;
        line-height: 1.2;
        padding: 40px 0px 20px 0px;  
    }
    .sect8-contenedorSer .text8-sectSer2 p{
        font-size: 15px;
        padding: 0px 105px 50px 0px;
        letter-spacing: 0px;
        line-height: 1.2;
    }
    /*<!--------------TEXTO LITIGIOS-------------->*/
    .sect9-contenedorSer .img9-sectSer{
        margin: 0px 0px 0px 60px;  
    }
    .sect9-contenedorSer .img9-sectSer img{
        width: 100%;
        height: 90%;
        margin: 0px;
        padding: 40px 40px 40px 0px;    
        object-fit: cover;
    }
    .sect9-contenedorSer .text9-sectSer{
        margin: 50px 100px 40px 0px; 
    }
    .sect9-contenedorSer .text9-sectSer h1{
        font-size: 30px;
        padding: 0px 100px 20px 0px;  
        letter-spacing: 1px;
    }
    .sect9-contenedorSer .text9-sectSer p{
        font-size: 15px;
        padding: 0px 0px 50px 0px;
        letter-spacing: 0px;
        line-height: 1.2;
    }
    /*<!--------------Societario y o comercial------------->*/
    .sect10-contenedorSleg .text10-sectSleg h1{
        margin: 0px;
        font-size: 30px;
        padding: 0px 150px 15px 60px;  
        text-align: left;
    }
    .sect10-contenedorSleg .text10-sectSleg p{
        font-size: 15px;
        padding: 0px 35px 0px 60px;
        letter-spacing: 0px;
        font-weight: 100;
    }
    
    /*<!--------------DERECHO TRIBUTARIO------------->*/
    .sect11-contenedorSleg .img11-sectSleg{
       margin: 0px 0px 0px 80px;
    }
    
    .sect11-contenedorSleg .img11-sectSleg img{
        width: 100%;
        height: 90%;
        margin: 0px;
        object-fit: cover;
    }
    .sect11-contenedorSleg .text11-sectSleg{        
        margin: 50px 0px 40px 0px;
    }
    .sect11-contenedorSleg .text11-sectSleg h1{
        font-size: 30px;
        padding: 0px 0px 10px 0px;  
        letter-spacing: 1px;
    }
    .sect11-contenedorSleg .text11-sectSleg p{
        font-size: 15px;
        padding: 0px 40px 50px 0px;
        letter-spacing: 0px;
        line-height: 1.2;
    }
    /*************S E R V I C I O S***T R E S*****************/
    /************************SERVICIOS TRIBUTARIOS ****/
    .sect12-contenedorStri .text12-sectStr h1{
        font-size: 35px;
        padding: 0px 100px 0px 50px;      
    }
    .sect12-contenedorStri .text12-sectStr p{
        font-size: 30px;
        padding: 0px  100px 40px 50px;
    }
    /*<!--------------CONSUTRIA TRIBUTARIA-------------->*/
    .sect13-contenedorStri .img13-sectStri{
        margin: 0px;
        margin-left: 60px;
    }
    .sect13-contenedorStri .img13-sectStri img{
        width: 100%;
        height: 100%;  
        object-fit: cover;
    }
    .sect13-contenedorStri .text13-sectStri{
        margin-bottom: 5px; 
        margin: 50px 110px 0px 0px;  
    }
    .sect13-contenedorStri .text13-sectStri h1{
        font-size: 30px;
        line-height: 1.1;
         letter-spacing: 0.8;
        padding: 0px 150px 10px 0px;  
    }
    .sect13-contenedorStri .text13-sectStri p{
        font-size: 15px;
        padding: 0px 25px 50px 0px;
        letter-spacing: 0px;
        line-height: 1.2;
    }
    /*<!--------------TEXTO PLANEACION TRIBUTARIA ------------->*/
    .sect14-contenedorStri .text14i-sectStri h1{
        font-size: 30px;   
        margin-bottom: 10px;    
        padding: 0px 90px 0px 20px;  
        letter-spacing: 0px;
    }
    .sect14-contenedorStri .text14i-sectStri p{
        font-size: 15px;
        line-height: 1.1;
        padding: 0px 90px 0px 20px;
        letter-spacing: 0px;
    }
    .sect14-contenedorStri .text14d-sectStri{
        flex-basis: 64%;
        display:flex;
        flex-direction: column;
        justify-content: center;  
        background: #FFFFFF; 
        margin: 75px 0px 60pX 0px;
    }
    .sect14-contenedorStri .text14d-sectStri .listaStri{
        font-size: 15px;     
        text-align: left;
        padding: 39px 90px 30px 0px; 
        letter-spacing: 0px;
        line-height: 1.1;
       
    }
    /*<!--------------PRECIOS DE TRANSFERENCIA-------------->*/
    .sect15-contenedorStri .img15-sectStri{
       margin: 0px 0px 0px 30px; 
    }
    .sect15-contenedorStri .text15-sectStri{
        margin: 40px 0px 0px 0px;  
    }
    .sect15-contenedorStri .text15-sectStri h1{
        font-size: 30px;
        padding: 0px 10px 10px 50px;  
        letter-spacing: 0px;
    }
    .sect15-contenedorStri .text15-sectStri p{
        font-size: 15px;    
        padding: 0px 110px 0px 50px;
        letter-spacing: 0px;
        line-height: 1.1;
    }
    /*<!--------------TEXTO Devoluciones y compensaciones de impuestos------------->*/
    .sect16-contenedorStri .text16-sectStri h1{
        font-size: 30px;
        padding: 0px 150px 15px 70px;  
        letter-spacing: 0px;
        margin: 0px;
    }
    .sect16-contenedorStri .text16-sectStri p{
        font-size: 15px;    
        line-height: 1.1;
        padding: 0px 80px 0px 70px;
        letter-spacing: 0px;
    }
    .sect16-contenedorStri .img16-sectStri{
        flex-basis: 52%;
        position: relative;
        overflow: hidden;
        justify-content: center;
    }
    .sect16-contenedorStri .img16-sectStri img{
        width: 100%;
        height: 100%;
        margin: 0;
        padding:0;
        object-fit: cover;
    }
    }
/*nuevo completo ok030525**/
@media(min-width:781px) and (max-width:900px){ 



/***HOME*/
   
.header-contenido{
    width: 100%;
    height: 350px;    
}
.Enlace{
    width: 30%;
    height: 170px;
    
}
.Enlace h1{
    font-size: 22px;
    transform: translateY(120px);     
}

.Enlace .lista{
    font-size: 12px; 
    width: 100%;
    padding: 10px 10px;
    transform: translateY(130px);    
}

.Enlace:hover h1{
    transform: translateY(-1px);
    font-size: 12px;  
    padding: 20px 0px 0px 0px;
}


.Enlace:hover .lista{
    transform: translateY(-1px);
    transition: all 500ms;   
}

/***imagenes x 5*/
.images .imag h2{    
    font-size: 15px;      
    padding: 10px;
}
/***********TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedor{   
    padding: 40px 0px;
    margin: 0px;   
}
.sect1-contenedor .img-sect1{
    margin: 40px;
    padding: 10px 25px 10px 40px; 
    margin: 0px;  
}

.sect1-contenedor .text-sect1 {
    width: 230px;
    height: 280px;
    padding: 0px 0px 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sect1-contenedor .text-sect1 h1 {
    font-size: 30px;
}

.sect1-contenedor .text-sect1 p {
    font-size: 13px;
}

/******************GALERY IMG X 5************************/
.images .imag{
    /*texto dentro de la imagen*/
    height: 310px;   
}
.images .imag h2{    
    font-size: 15px;      
    padding: 10px;
}



/******************CONTACTENOS HOME************************/

.Formulario{
    height: 300px;   
}

.Formulario .text-form{ 
	flex-basis:37%;
    width: 275px;
}

.Formulario .text-form h1{
    width: 236px;
    height: 240px;
    padding: 30px;
    font-size: 27px;   
 }

 .Formulario .cuadro-form{
    width: 430px;
    height: 240px;
}

.form { 
    width: 430px;
    height: 240px;
 }

.form_cta{
    font-size: 15px;
    margin: 5px 10%;
    padding: 10px; 
    font-weight: bold;    
}

.form_input{
    font-size: 11px;
    padding: 0.8em;   
}




/*********************************************************/

.footerT .footer{
    padding: 10px;
    justify-content: left;
}

/*

.footerT .footer .logoW img{
       object-fit: cover;
}*/

.footerT .footer .lineB{
    height: 92px;
    margin: 0px;
}

.footerT .footer .link{
    margin: 15px;
    font-size: 9px;
}

/***********TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedorUS .text-sect1US h1{
    font-size: 18px;
    padding: 0px 0px 0px 75px;  
    
}
.sect1-contenedorUS .text-sect1US p{
    font-size: 24px;
    padding: 0px  90px 0px 75px;    
}
/***********TEXTO HISTORIA********************/
.sect2-contenedorUS .text2-sect1US h1{
    font-size: 25px;
    padding: 0px 70px;     
}

.sect2-contenedorUS .Parrafo2-sect1US p{
    font-size: 11px;
    padding: 0px 10px;
    padding-right: 20px;
    text-align: left;
}

/***********TEXTO VALORES********************/
.sect3-contenedorUS .text3-sect2US h1{
    font-size: 25px;
    padding: 0px 70px;          
}

.sect3-contenedorUS .images-sect2US{
    padding: 0px 10px 0px 0px; 
    margin: 0px;
    justify-content: space-between;  
}

.sect3-contenedorUS .images-sect2US .val{
    width: 95px;
    height: 100px;
    margin: 0px 0px;
    text-align: left;     
}

.sect3-contenedorUS .images-sect2US img{
    width: 3px;
    height: 30px;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect3-contenedorUS .images-sect2US .val h2{
    font-size: 13px;    
}
/***********TEXTO MISION VISION********************/

.sect4-contenedorUS .text4-sect3US {
    height: 250px;
    padding: 0px;
}
.sect4-contenedorUS .text5-sect4US{
    height: 250px;
    padding: 0px;    
}
.sect4-contenedorUS .text4-sect3US h1,
.sect4-contenedorUS .text5-sect4US h1{
    font-size: 27px;
    padding: 0px;
    padding: 40px 10px 20px 70px;      
}
.sect4-contenedorUS .text4-sect3US p,
.sect4-contenedorUS .text5-sect4US p{
    font-size: 10px;
    margin: 0px;
    padding: 0px;
    padding: 0px 45px 20px 70px;
}
/*********************************************************/

/*******************C O N T A C T O***********************/

/***********SECTION CONTACT********************/

.Formulario2 .cuadro-form2{ /*tamaño contenedor formulario*/
    padding: 0px 0px;
}

.Formulario2 .text-form2 h1{ /*texto de la imagen*/
    width: 300px;
    height: 80px;
    padding: 20px 10px 0px 60px;
    margin-bottom: 60px;
    font-size: 14px; 
}

.Formulario2 .cuadro-form2 h1{/*titulo formulario*/
    font-size: 25px;
    padding: 25px;
    margin: 0px;
    
}

.Formulario2 .form {
    width: 100%;
    height: 280px;    
    padding: 0px;
 }

.Formulario2 .form_container{   
    gap: 5px;  
    padding: 0px 30px;
    margin: 0px;
    
}

.Formulario2 .form_cta{    
    font-size: 15px;     
    padding: 0px 0px;
    width: 98%;
}

.Formulario2 .form_input{
    font-size: 10px;  
    margin: 0px;  
    padding: 5px;
}

.form_input--message{
    margin: 0px;
    padding: 5px;
    height: 80px;  
}

/***********TEXTO IZQ - IMAGEN DERECHA PRESIDENT********************/

.sect-contenedorContact .img-sectContact{
    margin: 50px 0px 30px 0px;
}

.sect-contenedorContact .text-sectContact h1{    
    font-size: 25px;
}

.sect-contenedorContact .img-sectContact h1{
    font-size: 10px;
    padding: 5px 0px 0px 2px;  
}

.sect-contenedorContact .img-sectContact h2{
    font-size: 9px;
    padding: 0px 0px 0px 0px;  
    line-height: 1.5;
}

/***************I N D U S T R I A S***********************/

/***********TEXTO ********************/
.sect-contenedorIn{
    height: 150px;
}

.text-sectIn{   
    height: 150px;    
}

.text-sectIn h1{    
    font-size: 26px;
    padding-left: 80px;
}

/***********IMG - TEXTO MANUFACTURA********************/

.sect1-contenedorIn .text1-sectIn h1{
    font-size: 25px;
    margin: 0px 90px 30px 35px;
}

.sect1-contenedorIn .text1-sectIn p{
    font-size: 10px;
    margin: 0px 80px 50px 35px;
}

/***********IMG - TEXTO TRANSPORTE Y LOGISTICA********************/
.sect2-contenedorIn .text2-sectIn h1{
    font-size: 25px;
    margin: 0px 50px 20px 80px;
}

.sect2-contenedorIn .text2-sectIn p{
    font-size: 10px;
    margin: 0px 60px 40px 80px;
}
/***********IMG - TEXTO TECNOLOGIA MEDIOS********************/
.sect3-contenedorIn .text3-sectIn h1{
    font-size: 25px;    
    padding: 0px 40px 20px 40px;  
}

.sect3-contenedorIn .text3-sectIn p{
    font-size: 10px;    
    padding: 0px 50px 30px 40px;  
}

/***********IMG - TEXTO SECTOR FINANCIER********************/
.sect4-contenedorIn .text4-sectIn h1{
    font-size: 25px;
    margin: 0px 30px 20px 70px;    
}
.sect4-contenedorIn .text4-sectIn p{
    font-size: 10px;
    margin: 0px 50px 40px 70px;    
}
/***********IMG - TEXTO SERV PROFESIONALES*******************/
.sect5-contenedorIn .text5-sectIn h1{
    font-size: 25px;
    margin: 0px 100px 10px 40px;
}
.sect5-contenedorIn .text5-sectIn p{
    font-size: 10px;    
    margin: 0px 80px 40px 40px; 
    line-height: 1;   
}
/*****************S E R V I C I O S***********************/
/**********************       ****************************/
/************************AUDITORIA Y ASEOSRAMIENTO ****/
.sect1-contenedorSer .text1-sectSer h1{
    font-size: 25px;    
    padding: 0px 100px 0px 50px;      
}
.sect1-contenedorSer .text1-sectSer p{
    font-size: 20px;
    padding: 0px  100px 40px 50px;    
}
/************************REVISORIA FISCAL ****/
.sect2-contenedorSer .text2i-sectSer h1{
    font-size: 25px;
    padding: 0px 0px 0px 20px;  
}
.sect2-contenedorSer .text2i-sectSer p{
    font-size: 11px;    
    padding: 0px  0px 0px 20px;    
}
.sect2-contenedorSer .text2d-sectSer{
    margin-top: 95px;    
}
.sect2-contenedorSer .text2d-sectSer h1{
    font-size: 13px;  
    letter-spacing: 0px; }

.sect2-contenedorSer .text2d-sectSer .listaSer{
    font-size: 10px;
    padding: 0px 0px 10px 45px; 
    letter-spacing: 0px;   
}
/************************AUDITORIA EXTERNA ****/
.sect3-contenedorSer .text3-sectSer h1{
    font-size: 25px;
    margin-bottom: 10px;   
    padding: 0px 40px;  
    letter-spacing: 1px;
}
.sect3-contenedorSer .text3-sectSer p{
    font-size: 10px;
    padding: 0px 50px 0px 40px;
    letter-spacing: 0px;
}
/************************AUDITORIA EXTERNA ****/
.sect4-contenedorSer .text4-sectSer h1{
    font-size: 25px;   
    padding: 0px 60px 15px 60px;   
    letter-spacing: 1px;
    margin: 0px;
}
.sect4-contenedorSer .text4-sectSer p{
    font-size: 10px;
    padding: 0px 70px 0px 60px;
    letter-spacing: 0px;
}
/*--------------TEXTO REVSIONES LIMITADAS FINANCIERAS--------------*/
.sect5-contenedorSer .text5-sectSer h1{
    font-size: 25px;
    margin-bottom: 10px;   
    padding: 0px 40px; 
    letter-spacing: 1px;
}
.sect5-contenedorSer .text5-sectSer p{
    font-size: 10px;    
    padding: 0px 90px 0px 40px;
    letter-spacing: 0px;
}
/*<!--------------TEXTO Procedimientos previamente convenidos------------->*/
.sect6-contenedorSer .text6-sectSer h1{
    font-size: 25px;
    margin-bottom: 10px; 
    padding: 0px 20px 0px 60px;  
    letter-spacing: 0px;
}
.sect6-contenedorSer .text6-sectSer p{
    font-size: 10px;
    padding: 0px 60px 0px 60px;
    letter-spacing: 0px;
}
.sect6-contenedorSer .img6-sectSer{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}
.sect6-contenedorSer .img6-sectSer img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}
/*********************************************************/
/*************S E R V I C I O S***D O S*******************/
/************************SERVICIOS LEGALES ****/
.sect6-contenedorSleg .text6-sectSleg h1{
    font-size: 25px;
    padding: 0px 100px 0px 50px;     
}
.sect6-contenedorSleg .text6-sectSleg p{
    font-size: 20px;
    padding: 0px 100px 40px 50px;
}
/************************DERECHO LABORAL ****/
.sect7-contenedorSleg .text7-sectSleg{
    margin: 40px 0px 80px 60px;
}
.sect7-contenedorSleg .text7-sectSleg h1{
    font-size: 25px; 
    margin: 0px;
    padding: 0px 0px 20px 0px;  
    letter-spacing: 1px;
}
.sect7-contenedorSleg .text7-sectSleg p{
    font-size: 10px;
    padding: 0px 50px 50px 0px;
    letter-spacing: 0px;    
}
.sect7-contenedorSleg .img7-sectSleg{    
    margin: 40px 50px 80px 0px;
}
/*<!--------------TEXTO SAGRILAF-PTEE-------------->*/
.sect8-contenedorSer .text8-sectSer1{
    margin: 40px 0px;  
}
.sect8-contenedorSer .text8-sectSer2{
    margin: 40px 0px;
}
.sect8-contenedorSer .text8-sectSer1 h1
{   
    font-size: 25px;
    padding: 0px 10px 20px 60px; 
}
.sect8-contenedorSer .text8-sectSer1 h2{
    font-size: 12px;  
    padding: 0px 0px 15px 60px; 
    letter-spacing: 0px; 
}
.sect8-contenedorSer .text8-sectSer1 p{
    font-size: 10px;    
    padding: 0px 45px 50px 60px;
    letter-spacing: 0px;
    line-height: 1.2;
}
.sect8-contenedorSer .text8-sectSer2 h2{
    font-size: 12px;
    line-height: 1.2;
    padding: 45px 0px 20px 0px;  
}
.sect8-contenedorSer .text8-sectSer2 p{
    font-size: 10px;
    padding: 0px 105px 50px 0px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------TEXTO LITIGIOS-------------->*/
.sect9-contenedorSer .img9-sectSer{
    margin: 0px 0px 0px 60px;  
}
.sect9-contenedorSer .img9-sectSer img{
    width: 100%;
    height: 90%;
    margin: 0px;
    padding: 40px 40px 40px 0px;    
    object-fit: cover;
}
.sect9-contenedorSer .text9-sectSer{
    margin: 50px 100px 40px 0px; 
}
.sect9-contenedorSer .text9-sectSer h1{
    font-size: 25px;
    padding: 0px 100px 20px 0px;  
    letter-spacing: 1px;
}
.sect9-contenedorSer .text9-sectSer p{
    font-size: 12px;
    padding: 0px 0px 50px 0px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------Societario y o comercial------------->*/
.sect10-contenedorSleg .text10-sectSleg h1{
    margin: 0px;
    font-size: 25px;
    padding: 0px 60px 15px 60px;  
    text-align: left;
}
.sect10-contenedorSleg .text10-sectSleg p{
    font-size: 10px;
    padding: 0px 35px 0px 60px;
    letter-spacing: 0px;
}

/*<!--------------DERECHO TRIBUTARIO------------->*/
.sect11-contenedorSleg .img11-sectSleg{
   margin: 0px 0px 0px 80px;
}

.sect11-contenedorSleg .img11-sectSleg img{
    width: 100%;
    height: 90%;
    margin: 0px;
    object-fit: cover;
}
.sect11-contenedorSleg .text11-sectSleg{
    
    margin: 50px 0px 40px 0px;
}
.sect11-contenedorSleg .text11-sectSleg h1{
    font-size: 25px;
    padding: 0px 0px 10px 0px;  
    letter-spacing: 1px;
}
.sect11-contenedorSleg .text11-sectSleg p{
    font-size: 12px;
    padding: 0px 40px 50px 0px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*************S E R V I C I O S***T R E S*****************/
/************************SERVICIOS TRIBUTARIOS ****/
.sect12-contenedorStri .text12-sectStr h1{
    font-size: 25px;
    padding: 0px 100px 0px 50px;      
}
.sect12-contenedorStri .text12-sectStr p{
    font-size: 20px;
    padding: 0px  100px 40px 50px;
}
/*<!--------------CONSUTRIA TRIBUTARIA-------------->*/
.sect13-contenedorStri .img13-sectStri{
    margin: 0px;
    margin-left: 60px;
}
.sect13-contenedorStri .img13-sectStri img{
    width: 100%;
    height: 100%;  
    object-fit: cover;
}
.sect13-contenedorStri .text13-sectStri{
    margin-bottom: 5px; 
    margin: 50px 110px 0px 0px;  
}
.sect13-contenedorStri .text13-sectStri h1{
    font-size: 25px;
    line-height: 1.1;
     letter-spacing: 0.8;
    padding: 0px 20px 10px 0px;  
}
.sect13-contenedorStri .text13-sectStri p{
    font-size: 10px;
    padding: 0px 25px 50px 0px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------TEXTO PLANEACION TRIBUTARIA ------------->*/
.sect14-contenedorStri .text14i-sectStri h1{
    font-size: 25px;   
    margin-bottom: 10px;    
    padding: 0px 20px 0px 20px;  
    letter-spacing: 0px;
}
.sect14-contenedorStri .text14i-sectStri p{
    font-size: 10px;
    line-height: 1.1;
    padding: 0px  50px 0px 20px;
    letter-spacing: 0px;
}
.sect14-contenedorStri .text14d-sectStri{
    flex-basis: 64%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #FFFFFF; 
    margin: 75px 0px 60pX 0px;
}
.sect14-contenedorStri .text14d-sectStri .listaStri{
    font-size: 10px;     
    text-align: left;
    padding: 35px 90px 30px 0px; 
    letter-spacing: 0px;
    line-height: 1.1;
   
}
/*<!--------------PRECIOS DE TRANSFERENCIA-------------->*/
.sect15-contenedorStri .img15-sectStri{
   margin: 0px 0px 0px 60px; 
}
.sect15-contenedorStri .text15-sectStri{
    margin: 40px 0px 0px 0px;  
}
.sect15-contenedorStri .text15-sectStri h1{
    font-size: 25px;
    padding: 0px 10px 10px 0px;  
    letter-spacing: 0px;
}
.sect15-contenedorStri .text15-sectStri p{
    font-size: 10px;    
    padding: 0px 110px 0px 0px;
    letter-spacing: 0px;
    line-height: 1.1;
}
/*<!--------------TEXTO Devoluciones y compensaciones de impuestos------------->*/
.sect16-contenedorStri .text16-sectStri h1{
    font-size: 25px;
    padding: 0px 120px 15px 70px;  
    letter-spacing: 0px;
    margin: 0px;
}
.sect16-contenedorStri .text16-sectStri p{
    font-size: 10px;    
    line-height: 1.1;
    padding: 0px 80px 0px 70px;
    letter-spacing: 0px;
}
.sect16-contenedorStri .img16-sectStri{
    flex-basis: 52%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}
.sect16-contenedorStri .img16-sectStri img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}
}
/*completo ok030525*/
@media(max-width:780px){ 

    .header{
        padding: 12px 0;
    }
    .header .menu{
        position: fixed;
        right: 0;
        top:0;
        width: 410px;
        height:100%;
        background-color: #e5e5e5;
        padding: 15px 30px 30px;
        overflow-y: auto;
        z-index: 1;
        transform: translateX(100%);
    }

    .header .menu.open{
        transform: none;
    }

    .header .menu .head{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
    }

    .header .menu .close-menu-btn{
        height:35px;
        width: 35px;
        position:relative;
        display: inline-flex;
        align-items:center;
        justify-content: center;
        background-color: transparent;
        cursor: pointer;
        border:none;
    }

    .header .menu .close-menu-btn::before,
    .header .menu .close-menu-btn::after{
        content:'';
        position:absolute;
        width: 80%;
        height: 2px;
        background-color: #402026;
    }

    .header .menu .close-menu-btn::before{
        transform:rotate(45deg);
    }
    .header .menu .close-menu-btn::after{
        transform:rotate(-45deg)
    }

    .header .menu > ul > li{
        display:block;
    }

    .header .menu > ul > li:not(:last-child){
        margin-right: 0;
    }

    .header .menu li{
        border-bottom: 1px solid #402026;
    }

    .header .menu .bn1 li{ /*acomodar nosotros*/ 
        border-top: 1px solid #402026;
    }

    /*.header .menu li:first-child{
        border-top: 1px solid #402026;
    }*/

    .header .menu > ul > li > a {
        padding: 12px 0;
    }
    .header .menu > ul > .dropdown > a{
        padding-right: 34px;
    }
    .header .menu i{
        height: 34px;
        width: 34px;
        border: 1px solid #402026;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        cursor: pointer;
        top: 7px;
    }
    .header .menu .dropdown.active >i{
        background-color: #f1f1f1;
        transform: rotate(180deg);
    }
    .header .menu .s-menu{
        position: static;
        opacity: 1;
        transform:none;
        visibility: visible;
        padding: 0;
        transition:none;
        box-shadow: none;
        width: 100%;
        display: none;
    }

    .header .menu .dropdown.active > .s-menu{
        display: block;
    }

    .header .menu .s-menu li:last-child{
        border:none;
    }

    .header .menu .s-menu a{
        padding: 12px 0 12px 15px;
    }

    .header .menu .s-menu .s-menu a{
        padding-left:30px;
    }
    .header .menu .s-menu .s-menu .s-menu a{
        padding-left:40px;
    }

    .header .menu .s-menu span{
        padding-left:30px;
        background-image: none;        
    }

    .header .menu .s-menu i{
        transform: none;
        right:0;
    }
    .navbarb .open-menu-btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 44px;
        cursor: pointer;
        position: relative;
        background-color: transparent;
        border:none;
        padding-right: 50px;
    }

    .navbarb .open-menu-btn .line{
        height: 2px;
        width: 30px;
        background-color: #f1f1f1;
        position:absolute;
    }
    .navbarb .open-menu-btn .line-1{
        transform: translateY(-8px);
    }

    .navbarb .open-menu-btn .line-3{
        transform: translateY(8px);
    }

    
    .header .menu .nb1{    /*acomodar nosotros*/     
        justify-content: left; 
        text-align: left;  
        width: 100%;  
        border-top: 1px solid #402026;  
        border-bottom: 1px solid #402026; 
                
    }

    .header .menu .nb1 li{    /*acomodar nosotros*/      
        border-bottom: none; 
    }

    
    .header .menu .nb1 li a{     /*acomodar nosotros*/     
        padding-left: 20px;
    }


    .header .menu .nb2{          
        display: block;
        justify-content:baseline; 
        text-align: left;
    }
    
    .header .menu .s-menu .dropdown a{
        font-size: 11px;
    }

    

    /**********************buscador responsive*******************************/
    .header .navbarb {
        display:flex;
        justify-content:space-between;
        padding: 0; 
        width: 100%; 
        height: auto;
        align-items: center;
        background-color:  #402026;
    }
    .header{
        background-color: #402026;
    }
    #ctn-icon-search {        
       display: none;      
    }
    .header .logo{
        display: none;
    }
    
    #box-search{
        display:none;
    }


/***HOME: IMAGEN FND OJO FEB202025*/

   
.header-contenido{
    width: 100%;
    height: 380px;
    object-fit: cover;
    
}
.Enlace{
    width: 30%;
    height: 200PX;
    margin: 0px 0px 0px 8px;
    padding: 10px;
}

.Enlace h1{
    font-size: 19px;     
    transform: translateY(140px);     
}

.Enlace .lista{
    font-size: 12px; 
    width: 100%;
    height: 150px;
    padding: 20px 30px;
    transform: translateY(250px);    
}

.Enlace:hover h1{
    transform: translateY(-1px);
    font-size: 11px;
    transition: all 350ms;   
    padding-left: 0px;
}

.Enlace:hover .lista{
    transform: translateY(-2px);
    transition: all 500ms;   
}

/***********TEXTO IZQ - IMAGEN DERECHA********************/

.sect1-contenedor .text-sect1 h1{
    font-size: 40px;
}
.sect1-contenedor .text-sect1 p{
    font-size: 17px;
}

/******************GALERY IMG X 5************************/

.images .imag{
    /*texto dentro de la imagen*/
    height: 310px;    
}

.images .imag h2{    
    font-size: 14px;      
    padding: 15px;
}

/******************CONTACTENOS HOME************************/

.Formulario{
    height: 300px;   
}

.Formulario .text-form{ 
   flex-basis: 37%;
}

.Formulario .text-form h1{
    width: 236px;
    height: 240px;
    padding: 30px;
    font-size: 27px;   
 }

 .Formulario .cuadro-form{
    width: 430px;
    height: 240px;
}

.form { 
    width: 430px;
    height: 240px;
 }

.form_cta{
    font-size: 15px;
    margin: 5px 10%;
    padding: 10px; 
    font-weight: bold;    
}

.form_input{
    font-size: 11px;
    padding: 0.8em;   
}

/*********************************************************/

.footerT .footer{
    padding: 10px;
    justify-content: left;
}

/*

.footerT .footer .logoW img{
       object-fit: cover;
}*/

.footerT .footer .lineB{
    height: 92px;
    margin: 0px;
}

.footerT .footer .link{
    margin: 15px;
    font-size: 9px;
}

/***********TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedorUS .text-sect1US h1{
    font-size: 18px;
    padding: 0px 0px 0px 75px;  
    
}
.sect1-contenedorUS .text-sect1US p{
    font-size: 24px;
    padding: 0px  90px 0px 75px;    
}
/***********TEXTO HISTORIA********************/
.sect2-contenedorUS .text2-sect1US h1{
    font-size: 25px;
    padding: 0px 70px;     
}

.sect2-contenedorUS .Parrafo2-sect1US p{
    font-size: 11px;
    padding: 0px 10px;
    padding-right: 20px;
    text-align: left;
}

/***********TEXTO VALORES********************/
.sect3-contenedorUS .text3-sect2US h1{
    font-size: 25px;
    padding: 0px 70px;          
}

.sect3-contenedorUS .images-sect2US{
    padding: 0px 10px 0px 0px; 
    margin: 0px;
    justify-content: space-between;  
}

.sect3-contenedorUS .images-sect2US .val{
    width: 95px;
    height: 100px;
    margin: 0px 0px;
    text-align: left;     
}

.sect3-contenedorUS .images-sect2US img{
    width: 3px;
    height: 30px;
    margin: 0;
    padding:0;
    object-fit: cover;
}

.sect3-contenedorUS .images-sect2US .val h2{
    font-size: 13px;    
}
/***********TEXTO MISION VISION********************/

.sect4-contenedorUS .text4-sect3US {
    height: 250px;
    padding: 0px;
}
.sect4-contenedorUS .text5-sect4US{
    height: 250px;
    padding: 0px;    
}
.sect4-contenedorUS .text4-sect3US h1,
.sect4-contenedorUS .text5-sect4US h1{
    font-size: 27px;
    padding: 0px;
    padding: 40px 10px 20px 70px;      
}
.sect4-contenedorUS .text4-sect3US p,
.sect4-contenedorUS .text5-sect4US p{
    font-size: 10px;
    margin: 0px;
    padding: 0px;
    padding: 0px 45px 20px 70px;
}
/*********************************************************/

/*******************C O N T A C T O***********************/

/***********SECTION CONTACT********************/

.Formulario2 .cuadro-form2{ /*tamaño contenedor formulario*/
    padding: 0px 0px;
}

.Formulario2 .text-form2 h1{ /*texto de la imagen*/
    width: 300px;
    height: 80px;
    padding: 20px 10px 0px 60px;
    margin-bottom: 60px;
    font-size: 14px; 
}

.Formulario2 .cuadro-form2 h1{/*titulo formulario*/
    font-size: 25px;
    padding: 25px;
    margin: 0px;
    
}

.Formulario2 .form {
    width: 100%;
    height: 280px;    
    padding: 0px;
 }

.Formulario2 .form_container{   
    gap: 5px;  
    padding: 0px 30px;
    margin: 0px;
    
}

.Formulario2 .form_cta{    
    font-size: 15px;     
    padding: 0px 0px;
    width: 98%;
}

.Formulario2 .form_input{
    font-size: 10px;  
    margin: 0px;  
    padding: 5px;
}

.form_input--message{
    margin: 0px;
    padding: 5px;
    height: 80px;  
}

/***********TEXTO IZQ - IMAGEN DERECHA PRESIDENT********************/

.sect-contenedorContact .img-sectContact{
    margin: 50px 0px 30px 0px;
}

.sect-contenedorContact .text-sectContact h1{    
    font-size: 25px;        
}

.sect-contenedorContact .img-sectContact h1{
    font-size: 10px;
    padding: 5px 0px 0px 2px;  
}

.sect-contenedorContact .img-sectContact h2{
    font-size: 9px;
    padding: 0px 0px 0px 0px;  
    line-height: 1.5;
}

/***************I N D U S T R I A S***********************/

/***********TEXTO ********************/
.sect-contenedorIn{
    height: 150px;
}

.text-sectIn{   
    height: 150px;    
}

.text-sectIn h1{    
    font-size: 26px;
    padding-left: 80px;
}

/***********IMG - TEXTO MANUFACTURA********************/

.sect1-contenedorIn .text1-sectIn h1{
    font-size: 25px;
    margin: 0px 90px 30px 35px;
}

.sect1-contenedorIn .text1-sectIn p{
    font-size: 10px;
    margin: 0px 80px 50px 35px;
}

/***********IMG - TEXTO TRANSPORTE Y LOGISTICA********************/
.sect2-contenedorIn .text2-sectIn h1{
    font-size: 25px;
    margin: 0px 50px 20px 80px;
}

.sect2-contenedorIn .text2-sectIn p{
    font-size: 10px;
    margin: 0px 60px 40px 80px;
}
/***********IMG - TEXTO TECNOLOGIA MEDIOS********************/
.sect3-contenedorIn .text3-sectIn h1{
    font-size: 25px;    
    padding: 0px 40px 20px 40px;  
}

.sect3-contenedorIn .text3-sectIn p{
    font-size: 10px;    
    padding: 0px 50px 30px 40px;  
}

/***********IMG - TEXTO SECTOR FINANCIER********************/
.sect4-contenedorIn .text4-sectIn h1{
    font-size: 25px;
    margin: 0px 30px 20px 70px;    
}
.sect4-contenedorIn .text4-sectIn p{
    font-size: 10px;
    margin: 0px 50px 40px 70px;    
}
/***********IMG - TEXTO SERV PROFESIONALES*******************/
.sect5-contenedorIn .text5-sectIn h1{
    font-size: 25px;
    margin: 0px 100px 10px 40px;
}
.sect5-contenedorIn .text5-sectIn p{
    font-size: 10px;    
    margin: 0px 80px 40px 40px; 
    line-height: 1;   
}
/*****************S E R V I C I O S***********************/
/**********************       ****************************/
/************************AUDITORIA Y ASEOSRAMIENTO ****/
.sect1-contenedorSer .text1-sectSer h1{
    font-size: 25px;    
    padding: 0px 100px 0px 50px;      
}
.sect1-contenedorSer .text1-sectSer p{
    font-size: 20px;
    padding: 0px  100px 40px 50px;    
}
/************************REVISORIA FISCAL ****/
.sect2-contenedorSer .text2i-sectSer h1{
    font-size: 25px;
    padding: 0px 0px 0px 20px;  
}
.sect2-contenedorSer .text2i-sectSer p{
    font-size: 11px;    
    padding: 0px  0px 0px 20px;    
}
.sect2-contenedorSer .text2d-sectSer{
    margin-top: 95px;    
}
.sect2-contenedorSer .text2d-sectSer h1{
    font-size: 13px;  
    letter-spacing: 0px; }

.sect2-contenedorSer .text2d-sectSer .listaSer{
    font-size: 10px;
    padding: 0px 0px 10px 45px; 
    letter-spacing: 0px;   
}
/************************AUDITORIA EXTERNA ****/
.sect3-contenedorSer .text3-sectSer h1{
    font-size: 25px;
    margin-bottom: 10px;   
    padding: 0px 40px;  
    letter-spacing: 1px;
}
.sect3-contenedorSer .text3-sectSer p{
    font-size: 10px;
    padding: 0px 50px 0px 40px;
    letter-spacing: 0px;
}
/************************AUDITORIA EXTERNA ****/
.sect4-contenedorSer .text4-sectSer h1{
    font-size: 25px;   
    padding: 0px 60px 15px 60px;   
    letter-spacing: 1px;
    margin: 0px;
}
.sect4-contenedorSer .text4-sectSer p{
    font-size: 10px;
    padding: 0px 70px 0px 60px;
    letter-spacing: 0px;
}
/*--------------TEXTO REVSIONES LIMITADAS FINANCIERAS--------------*/
.sect5-contenedorSer .text5-sectSer h1{
    font-size: 25px;
    margin-bottom: 10px;   
    padding: 0px 40px; 
    letter-spacing: 1px;
}
.sect5-contenedorSer .text5-sectSer p{
    font-size: 10px;    
    padding: 0px 90px 0px 40px;
    letter-spacing: 0px;
}
/*<!--------------TEXTO Procedimientos previamente convenidos------------->*/
.sect6-contenedorSer .text6-sectSer h1{
    font-size: 25px;
    margin-bottom: 10px; 
    padding: 0px 20px 0px 60px;  
    letter-spacing: 0px;
}
.sect6-contenedorSer .text6-sectSer p{
    font-size: 10px;
    padding: 0px 60px 0px 60px;
    letter-spacing: 0px;
}
.sect6-contenedorSer .img6-sectSer{
    flex-basis: 50%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}
.sect6-contenedorSer .img6-sectSer img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}
/*********************************************************/
/*************S E R V I C I O S***D O S*******************/
/************************SERVICIOS LEGALES ****/
.sect6-contenedorSleg .text6-sectSleg h1{
    font-size: 25px;
    padding: 0px 100px 0px 50px;     
}
.sect6-contenedorSleg .text6-sectSleg p{
    font-size: 20px;
    padding: 0px 100px 40px 50px;
}
/************************DERECHO LABORAL ****/
.sect7-contenedorSleg .text7-sectSleg{
    margin: 40px 0px 80px 60px;
}
.sect7-contenedorSleg .text7-sectSleg h1{
    font-size: 25px; 
    margin: 0px;
    padding: 0px 0px 20px 0px;  
    letter-spacing: 1px;
}
.sect7-contenedorSleg .text7-sectSleg p{
    font-size: 10px;
    padding: 0px 50px 50px 0px;
    letter-spacing: 0px;    
}
.sect7-contenedorSleg .img7-sectSleg{    
    margin: 40px 50px 80px 0px;
}
/*<!--------------TEXTO SAGRILAF-PTEE-------------->*/
.sect8-contenedorSer .text8-sectSer1{
    margin: 40px 0px;  
}
.sect8-contenedorSer .text8-sectSer2{
    margin: 40px 0px;
}
.sect8-contenedorSer .text8-sectSer1 h1
{   
    font-size: 25px;
    padding: 0px 10px 20px 60px; 
}
.sect8-contenedorSer .text8-sectSer1 h2{
    font-size: 12px;  
    padding: 0px 0px 15px 60px; 
    letter-spacing: 0px; 
}
.sect8-contenedorSer .text8-sectSer1 p{
    font-size: 10px;    
    padding: 0px 45px 50px 60px;
    letter-spacing: 0px;
    line-height: 1.2;
}
.sect8-contenedorSer .text8-sectSer2 h2{
    font-size: 12px;
    line-height: 1.2;
    padding: 45px 0px 20px 0px;  
}
.sect8-contenedorSer .text8-sectSer2 p{
    font-size: 10px;
    padding: 0px 105px 50px 0px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------TEXTO LITIGIOS-------------->*/
.sect9-contenedorSer .img9-sectSer{
    margin: 0px 0px 0px 60px;  
}
.sect9-contenedorSer .img9-sectSer img{
    width: 100%;
    height: 90%;
    margin: 0px;
    padding: 40px 40px 40px 0px;    
    object-fit: cover;
}
.sect9-contenedorSer .text9-sectSer{
    margin: 50px 100px 40px 0px; 
}
.sect9-contenedorSer .text9-sectSer h1{
    font-size: 25px;
    padding: 0px 100px 20px 0px;  
    letter-spacing: 1px;
}
.sect9-contenedorSer .text9-sectSer p{
    font-size: 12px;
    padding: 0px 0px 50px 0px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------Societario y o comercial------------->*/
.sect10-contenedorSleg .text10-sectSleg h1{
    margin: 0px;
    font-size: 25px;
    padding: 0px 60px 15px 60px;  
    text-align: left;
}
.sect10-contenedorSleg .text10-sectSleg p{
    font-size: 10px;
    padding: 0px 35px 0px 60px;
    letter-spacing: 0px;
}

/*<!--------------DERECHO TRIBUTARIO------------->*/
.sect11-contenedorSleg .img11-sectSleg{
   margin: 0px 0px 0px 80px;
}

.sect11-contenedorSleg .img11-sectSleg img{
    width: 100%;
    height: 90%;
    margin: 0px;
    object-fit: cover;
}
.sect11-contenedorSleg .text11-sectSleg{
    
    margin: 50px 0px 40px 0px;
}
.sect11-contenedorSleg .text11-sectSleg h1{
    font-size: 25px;
    padding: 0px 0px 10px 0px;  
    letter-spacing: 1px;
}
.sect11-contenedorSleg .text11-sectSleg p{
    font-size: 12px;
    padding: 0px 40px 50px 0px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*************S E R V I C I O S***T R E S*****************/
/************************SERVICIOS TRIBUTARIOS ****/
.sect12-contenedorStri .text12-sectStr h1{
    font-size: 25px;
    padding: 0px 100px 0px 50px;      
}
.sect12-contenedorStri .text12-sectStr p{
    font-size: 20px;
    padding: 0px  100px 40px 50px;
}
/*<!--------------CONSUTRIA TRIBUTARIA-------------->*/
.sect13-contenedorStri .img13-sectStri{
    margin: 0px;
    margin-left: 60px;
}
.sect13-contenedorStri .img13-sectStri img{
    width: 100%;
    height: 100%;  
    object-fit: cover;
}
.sect13-contenedorStri .text13-sectStri{
    margin-bottom: 5px; 
    margin: 50px 110px 0px 0px;  
}
.sect13-contenedorStri .text13-sectStri h1{
    font-size: 25px;
    line-height: 1.1;
     letter-spacing: 0.8;
    padding: 0px 20px 10px 0px;  
}
.sect13-contenedorStri .text13-sectStri p{
    font-size: 10px;
    padding: 0px 25px 50px 0px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------TEXTO PLANEACION TRIBUTARIA ------------->*/
.sect14-contenedorStri .text14i-sectStri h1{
    font-size: 25px;   
    margin-bottom: 10px;    
    padding: 0px 20px 0px 20px;  
    letter-spacing: 0px;
}
.sect14-contenedorStri .text14i-sectStri p{
    font-size: 10px;
    line-height: 1.1;
    padding: 0px  50px 0px 20px;
    letter-spacing: 0px;
}
.sect14-contenedorStri .text14d-sectStri{
    flex-basis: 64%;
    display:flex;
    flex-direction: column;
    justify-content: center;  
    background: #FFFFFF; 
    margin: 75px 0px 60pX 0px;
}
.sect14-contenedorStri .text14d-sectStri .listaStri{
    font-size: 10px;     
    text-align: left;
    padding: 35px 90px 30px 0px; 
    letter-spacing: 0px;
    line-height: 1.1;
   
}
/*<!--------------PRECIOS DE TRANSFERENCIA-------------->*/
.sect15-contenedorStri .img15-sectStri{
   margin: 0px 0px 0px 60px; 
}
.sect15-contenedorStri .text15-sectStri{
    margin: 40px 0px 0px 0px;  
}
.sect15-contenedorStri .text15-sectStri h1{
    font-size: 25px;
    padding: 0px 10px 10px 0px;  
    letter-spacing: 0px;
}
.sect15-contenedorStri .text15-sectStri p{
    font-size: 10px;    
    padding: 0px 110px 0px 0px;
    letter-spacing: 0px;
    line-height: 1.1;
}
/*<!--------------TEXTO Devoluciones y compensaciones de impuestos------------->*/
.sect16-contenedorStri .text16-sectStri h1{
    font-size: 25px;
    padding: 0px 120px 15px 70px;  
    letter-spacing: 0px;
    margin: 0px;
}
.sect16-contenedorStri .text16-sectStri p{
    font-size: 10px;    
    line-height: 1.1;
    padding: 0px 80px 0px 70px;
    letter-spacing: 0px;
}
.sect16-contenedorStri .img16-sectStri{
    flex-basis: 52%;
    position: relative;
    overflow: hidden;
    justify-content: center;
}
.sect16-contenedorStri .img16-sectStri img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}
}
/*nuevo completo ok030525*/
@media(max-width:652px){
    /***HOME: IMAGEN FND OJO FEB202025*/
    .header-contenido {
        width: 100%;
        height: 350px;
    }

.Enlace .lista{
    font-size: 11px; 
    padding: 10px 20px;
}

.Enlace h1 {
    font-size: 19px;
    transform: translateY(130px);
}


.Enlace:hover h1{
    font-size: 12px;
    transition: all 350ms;   
    padding: 0px;
}

.Enlace:hover .lista{
    transform: translateY(-2px);
    transition: all 500ms;   
}

/***********TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedor{   
    padding: 20px;
    margin: 0px;   
}
.sect1-contenedor .img-sect1{
    margin: 0px;
    padding: 10px 40px;   
}

/***********TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedor{   
    padding: 20px;
    margin: 0px;   
}
.sect1-contenedor .img-sect1{
    margin: 0px;
    padding: 10px 25px 10px 0px;  
}

.sect1-contenedor .text-sect1 {
    width: 230px;
    height: 280px;
    padding: 0px 20px 0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sect1-contenedor .text-sect1 h1 {
    font-size: 30px;
}

.sect1-contenedor .text-sect1 p {
    font-size: 15px;
}





    /******************CONTACTENOS HOME************************/

.Formulario{
    height: 300px;   
}

.Formulario .text-form{ 
    flex-basis: 37%;
}

.Formulario .text-form h1{
    width: 236px;
    height: 240px;
    padding: 30px;
    font-size: 27px;   
 }

 .Formulario .cuadro-form{
    width: 430px;
    height: 240px;
}

.form { 
    width: 430px;
    height: 240px;
 }

.form_cta{
    font-size: 15px;
    margin: 5px 10%;
    padding: 10px; 
    font-weight: bold;    
}

.form_input{
    font-size: 11px;
    padding: 0.8em;   
}

/***texto en 5 imag*/

.images .imag h2 {
    font-size: 12px;
    padding: 12px;
}


/**********NOSOTROS:*TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedorUS .text-sect1US h1{
    font-size: 16px;
    padding: 0px 0px 0px 55px;  
    
}
.sect1-contenedorUS .text-sect1US p{
    font-size: 18px;
    padding: 0px  90px 0px 55px;    
}
/*******************C O N T A C T O***********************/

/***********SECTION CONTACT********************/

.Formulario2 .form_cta{    
    margin-bottom: 30px;
}

/***************I N D U S T R I A S***********************/

/***********TEXTO ********************/

.text-sectIn h1{    
    font-size: 23px;
    padding-left: 80px;
}

/***********IMG - TEXTO MANUFACTURA********************/

.sect1-contenedorIn .text1-sectIn h1{
    font-size: 23px;
    margin: 0px 90px 30px 35px;
}

.sect1-contenedorIn .text1-sectIn p{
    font-size: 10px;
    margin: 0px 80px 50px 35px;
    font-weight: 100;
}

/***********IMG - TEXTO TRANSPORTE Y LOGISTICA********************/
.sect2-contenedorIn .text2-sectIn h1{
    font-size: 23px;
    margin: 0px 50px 20px 60px;
}

.sect2-contenedorIn .text2-sectIn p{
    font-size: 10px;
    margin: 0px 60px 40px 60px;
    font-weight: 100;
}
/***********IMG - TEXTO TECNOLOGIA MEDIOS********************/
.sect3-contenedorIn .text3-sectIn h1{
    font-size: 23px;    
    padding: 0px 10px 20px 40px;  
}

.sect3-contenedorIn .text3-sectIn p{
    font-size: 10px;    
    padding: 0px 20px 30px 40px;  
    font-weight: 100;
}

/***********IMG - TEXTO SECTOR FINANCIER********************/
.sect4-contenedorIn .text4-sectIn h1{
    font-size: 25px;
    margin: 0px 30px 20px 70px;    
}
.sect4-contenedorIn .text4-sectIn p{
    font-size: 10px;
    margin: 0px 50px 40px 70px; 
    font-weight: 100;   
}
/***********IMG - TEXTO SERV PROFESIONALES*******************/
.sect5-contenedorIn .text5-sectIn h1{
    font-size: 25px;
    margin: 0px 100px 10px 40px;
}
.sect5-contenedorIn .text5-sectIn p{
    font-size: 10px;    
    margin: 0px 80px 40px 40px; 
    line-height: 1;   
    font-weight: 100;
}

/*************S E R V I C I O S***u N O*******************/
/**Revisiones Limitadas*/
.sect5-contenedorSer .text5-sectSer p {
    font-weight: 100;
}


/************************SERVICIOS LEGALES ****/
/*<!--------------Derecho laboral y seguridad social------------->*/

.sect7-contenedorSleg .img7-sectSleg {
    margin: 40px 50px 30px 0px;
}
/*<!--------------Societario y o comercial------------->*/
.sect10-contenedorSleg .text10-sectSleg h1{    
    font-size: 23px;
    padding: 10px 60px 1px 60px;  
   
}
.sect10-contenedorSleg .text10-sectSleg p{
    font-size: 9px;
    padding: 0px 30px 20px 60px;
    letter-spacing: 0px;
    font-weight: 100;
}

/*************S E R V I C I O S***T R E S*****************/
/************************SERVICIOS TRIBUTARIOS ****/

/*<!--------------PRECIOS DE TRANSFERENCIA-------------->*/

 .sect15-contenedorStri .text15-sectStri h1{
     font-size: 25px;
     padding: 0px 10px 10px 0px;  
     letter-spacing: 0px;
 }
 .sect15-contenedorStri .text15-sectStri p{
     font-size: 10px;    
     padding: 0px 50px 0px 0px;
     letter-spacing: 0px;
     line-height: 1.1;
 }
 /*<!--------------TEXTO Devoluciones y compensaciones de impuestos------------->*/
 .sect16-contenedorStri .text16-sectStri h1{
     font-size: 25px;
     padding: 0px 55px 15px 70px;  
     letter-spacing: 0px;
     margin: 0px;
 }
 .sect16-contenedorStri .text16-sectStri p{
     font-size: 10px;        
     padding: 0px 55x 0px 70px;
    
 }
}
/*nuevo ok030525*/
@media(max-width:498px){
    /***HOME: IMAGEN FND OJO FEB202025*/
    .header-contenido {
        width: 100%;
        height: 280px;
    }

    .Enlace{
        width: 31%;
        height: 100px;
        margin: 0px 5px 0px 0px;
        padding: 8px;
        
    }
    .Enlace h1{
        font-size: 11px;     
        transform: translateY(60px);   
        
    }
    .Enlace .lista{
        font-size: 7px; 
        width: 100%;
        height: 90px;
        background-color: transparent;
        color: #333333;
        padding: 10px 5px 10px 13px;
        transform: translateY(100px);  
    }
    .Enlace:hover h1{
       display: none;
       color: #333333;
    
    }
    .Enlace:hover .lista{
        transform: translateY(2px);
        transition: all 500ms;   
    }

/***********TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedor{   
    padding: 20px;
    margin: 0px;   
}
.sect1-contenedor .img-sect1{
    margin: 0px;
    padding: 10px 40px;   
}

/***********TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedor{   
    padding: 0px;
    margin: 0px;   
}
.sect1-contenedor .img-sect1{
    margin: 0px;
    padding: 10px 25px 10px 0px; 
    margin: 0px;  
}

.sect1-contenedor .text-sect1 {
    width: 230px;
    height: 280px;
    padding: 0px 0px 0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sect1-contenedor .text-sect1 h1 {
    font-size: 30px;
}

.sect1-contenedor .text-sect1 p {
    font-size: 15px;
}


 /******************GALERY IMG X 5************************/
.images .imag{
    /*texto dentro de la imagen*/
    height: 210px;   
}
.images .imag h2{    
    font-size: 10px;      
    padding: 2px 2px 2px 5px;
}

/******************CONTACTENOS HOME************************/
.Formulario{
    flex-direction: column;  
    height: 280px;
    margin:0px;
    padding:0px;
    align-content: center;
    border-top: 2px groove #59363C;
}
.Formulario .text-form{ 
 
    width: 100%;
    height: 110px;
    padding:0px;
    align-items: center;
    justify-content: end;
    
}
.Formulario .text-form h1{
    width: 330px;
    height: 60%;
    font-size: 18px;  
    margin:0px 90px; 
    padding: 15px;
    align-items: center;
    text-align: center;
    justify-content: center;
    
 } 
 .Formulario .text-form img{
    width: 100%;
    height:100%;
    object-fit: cover;
    margin:0px;
    padding:0px;
 }
 .Formulario .cuadro-form{
    justify-content: center;
    align-content: center;
    width: 330px;
    height: 174px;
}
.form { 
    width: 330px;
    height: 174px;
 } 
.form_container{
    gap: 5px;
    grid-auto-columns: 100%;
    justify-content: center;   
    padding: 1px;   
}
.form_cta{
    font-size: 10px;
    margin: 1px 10%;
    padding: 8px 12px;   
}
.form_input{
    font-size: 9px;
    padding: 0.2em;   
}
.form_input--message{
    margin: 0px;
    padding: 0.2em;
    height: 50px;  
}

/***********TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedorUS .text-sect1US h1{
    font-size: 15px;
    padding: 0px 0px 0px 40px;  
    letter-spacing: 0px;
    
}
.sect1-contenedorUS .text-sect1US p{
    font-size: 17px;
    text-align: left;
    padding: 0px  30px 0px 40px;    
}

/***********TEXTO VALORES********************/

.sect3-contenedorUS .images-sect2US{
    margin: 0px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between; 
    padding: 0px 1px 0px 0px; 
}
.sect3-contenedorUS .images-sect2US .val{
    padding: 0px 10px 0px 0px;
    text-align: left;     
}
.sect3-contenedorUS .images-sect2US .val img{
    width: 50px;
    height: 50px;
    padding:0;
    object-fit: cover;
}
.sect3-contenedorUS .images-sect2US .val h2{
    font-size: 10px;    
}

/***********TEXTO MISION VISION********************/
.sect4-contenedorUS{ 
    height: 320px;
}

.sect4-contenedorUS .text4-sect3US {
    height: 320px;
}

.sect4-contenedorUS .text5-sect4US{
    height: 320px;
}

/*******************C O N T A C T O***********************/

/***********SECTION CONTACT********************/
.Formulario2{
    height: 280px;
}
.Formulario2 .text-form2 h1{ /*texto de la imagen*/
    width:100%;
    height: 20%;
    padding: 10px 20px;
    margin-bottom: 80px;
    align-content: center;
    font-size: 12px; 
   /* padding-right: 150px;*/
}

.Formulario2 .cuadro-form2 h1{/*titulo formulario*/
    font-size: 23px;   
    margin: 0px;
    padding: 10px;
    
}
.Formulario2 .form {
    width: 100%;
    height: 180px;    
    padding: 0px;
 }
.Formulario2 .form_container{   
    gap: 3px;  
    padding: 0px 30px;
    margin: 0px;
    
}
.Formulario2 .form_cta{    
    font-size: 13px;     
    padding: 3px 0px;
    margin: 0px;
    width: 100%;
}
.Formulario2 .form_input{
    font-size: 10px;  
    margin: 0px;  
    padding: 7px;
}
.Formulario2 .form_input--message{
    margin: 0px;
    padding: 7px;
    height: 50px;  
}
/***********TEXTO IZQ - IMAGEN DERECHA PRESIDENT********************/
.sect-contenedorContact{     
    margin: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.sect-contenedorContact .text-sectContact{
    margin: 10px 20px;
    align-items: center;
}
.sect-contenedorContact .img-sectContact{
    margin: 0px;
    padding: 0px;
}
.sect-contenedorContact .img-sectContact img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}
.sect-contenedorContact .text-sectContact h1{    
    font-size: 20px;
    margin: 0;
    padding:0;    
}
.sect-contenedorContact .img-sectContact h1{
    font-size: 9px;
    padding: 5px 0px 0px 2px;  
}
.sect-contenedorContact .img-sectContact h2{
    font-size: 8px;
    padding: 0px;
    margin:0px; 
    line-height: 1.5;
}



/***************I N D U S T R I A S***********************/

/***********TEXTO ********************/
.sect-contenedorIn{
    height: 100px;
}
.text-sectIn{ 
    width: 100%;  
    height: 100px;    
}
.text-sectIn h1{    
    font-size: 16px;
    padding-left: 40px;
}
/***********IMG - TEXTO MANUFACTURA********************/
.sect1-contenedorIn{ 
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    justify-content: center; 
}
.sect1-contenedorIn .img1-sectIn{
    flex-basis: 50%;       
}
.sect1-contenedorIn .img1-sectIn img{
    object-fit: cover;
}
.sect1-contenedorIn .text1-sectIn h1{
    font-size: 18px;
    letter-spacing: 0px;
    margin: 10px 0px 10px 20px;
}
.sect1-contenedorIn .text1-sectIn p{
    font-size: 8px;
    margin: 0px 20px 20px 20px;
    text-align: left;
    font-weight: 100;
}
/***********IMG - TEXTO TRANSPORTE Y LOGISTICA********************/
.sect2-contenedorIn{
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    justify-content: center;  
}
.sect2-contenedorIn .img2-sectIn{
    flex-basis: 50%;  
}
.sect2-contenedorIn .img2-sectIn img{
    object-fit: cover;
}
.sect2-contenedorIn .text2-sectIn h1{
    font-size: 18px;
    letter-spacing: 0px;
    margin: 20px 20px 10px 20px;
}
.sect2-contenedorIn .text2-sectIn p{
    font-size: 8px;
    margin: 0px 20px 30px 20px;
    text-align: left;
}
/***********IMG - TEXTO TECNOLOGIA MEDIOS********************/
.sect3-contenedorIn{
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    justify-content: center; 
}
.sect3-contenedorIn .img3-sectIn{
    flex-basis: 50%;   
}
.sect3-contenedorIn .img3-sectIn img{
    object-fit: cover;
}
.sect3-contenedorIn .text3-sectIn h1{
    font-size: 9px;    
    padding: 20px 2px 10px 10px;  
}
.sect3-contenedorIn .text3-sectIn p{
    font-size: 8px;    
    padding: 0px 20px 20px 15px; 
    text-align: left; 
    font-weight: 100;
}
/***********IMG - TEXTO SECTOR FINANCIER********************/
.sect4-contenedorIn{
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    justify-content: center; 
}
.sect4-contenedorIn .img4-sectIn{
    flex-basis: 50%;      
}
.sect4-contenedorIn .img4-sectIn img{
    object-fit: cover;
    object-position: left top;
}
.sect4-contenedorIn .text4-sectIn h1{
    font-size: 18px;
    margin: 10px 30px 10px 20px; 
    letter-spacing: 0px;   
}
.sect4-contenedorIn .text4-sectIn p{
    font-size: 8px;
    margin: 0px 20px 20px 20px;  
    text-align: left;  
}
/***********IMG - TEXTO SERV PROFESIONALES*******************/
.sect5-contenedorIn{
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    justify-content: center; 
}
.sect5-contenedorIn .img5-sectIn{
    flex-basis: 50%;       
}
.sect5-contenedorIn .img5-sectIn img{
    object-fit: cover;
}
.sect5-contenedorIn .text5-sectIn h1{
    font-size: 18px;
    margin: 10px 40px 10px 20px;
    letter-spacing: 0px;
}
.sect5-contenedorIn .text5-sectIn p{
    font-size: 8px;    
    margin: 0px 20px 20px 20px; 
    text-align: left;
}


/*************S E R V I C I O S***u N O*******************/
/************************AUDITORIA Y ASEOSRAMIENTO ****/
.sect1-contenedorSer{    
    margin: 0px;
    padding:0px;
}
.sect1-contenedorSer .text1-sectSer{
    margin:0px;
    padding:0px;
    margin-bottom: 4px;  
}
.sect1-contenedorSer .text1-sectSer h1{
    font-size: 15px;     
    letter-spacing: 0px;  
    padding: 0px 50px 0px 15px;      
}
.sect1-contenedorSer .text1-sectSer p{
    font-size: 12px;   
    padding: 0px  30px 20px 15px;    
}
/************************REVISORIA FISCAL ****/
.sect2-contenedorSer{
    margin: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
}
.sect2-contenedorSer .text2i-sectSer{
    margin: 0px;
    
}
.sect2-contenedorSer .text2i-sectSer h1{
    font-size: 17px;
    padding: 0px 0px 0px 5px;  
}
.sect2-contenedorSer .text2i-sectSer p{
    font-size: 8px;    
    padding: 0px  0px 0px 5px;    
}
.sect2-contenedorSer .text2d-sectSer{
    margin: 0px;
    padding: 0px;
    margin-top: 5px;    
}
.sect2-contenedorSer .text2d-sectSer h1{
    font-size: 9px;  
    letter-spacing: 0px; 
}
.sect2-contenedorSer .text2d-sectSer .listaSer{
    font-size: 8px;
    padding: 0px 0px 10px 25px; 
    letter-spacing: 0px;   
}
/************************AUDITORIA EXTERNA ****/

.sect3-contenedorSer .img3-sectSer{
    margin: 0px;
    padding:0px;   
}
.sect3-contenedorSer .img3-sectSer img{
   object-fit: cover;
 
   
}
.sect3-contenedorSer .text3-sectSer h1{
    font-size: 18px;
    padding: 10px 20px 0px 20px;  
    letter-spacing: 1px;
}
.sect3-contenedorSer .text3-sectSer p{
    font-size: 8px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
}
/************************AUDITORIA INTERNA ****/
.sect4-contenedorSer .img4-sectSer img{
    object-fit: cover;   
}

.sect4-contenedorSer .text4-sectSer h1{
    font-size: 18px;   
    padding: 10px 20px 10px 20px;
    letter-spacing: 1px;
    margin: 0px;
}
.sect4-contenedorSer .text4-sectSer p{
    font-size: 8px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
}
/*--------------TEXTO REVSIONES LIMITADAS FINANCIERAS--------------*/

.sect5-contenedorSer .img5-sectSer img{
    object-fit: cover;
}
.sect5-contenedorSer .text5-sectSer h1{
    font-size: 18px;
    margin-bottom: 10px;   
    padding: 10px 20px 0px 20px;
    letter-spacing: 1px;
}
.sect5-contenedorSer .text5-sectSer p{
    font-size: 8px;    
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
}
/*<!--------------TEXTO Procedimientos previamente convenidos------------->*/
.sect6-contenedorSer .img6-sectSer img{
    object-fit: cover;
}
.sect6-contenedorSer .text6-sectSer h1{
    font-size: 16px;
    margin-bottom: 10px; 
    padding: 10px 20px 0px 20px;
    letter-spacing: 0px;
}
.sect6-contenedorSer .text6-sectSer p{
    font-size: 8px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
}

/*************S E R V I C I O S***D O S*******************/

/************************SERVICIOS LEGALES ****/
.sect6-contenedorSleg{
    margin: 0px;
    padding:0px;
}
.sect6-contenedorSleg .img6-sectSleg{
    margin:0px;
    padding:0px;
    object-fit: cover;
}
.sect6-contenedorSleg .text6-sectSleg h1{
    font-size: 15px;
    padding: 0px 60px 0px 15px;      
}
.sect6-contenedorSleg .text6-sectSleg p{
    font-size: 12px;   
    padding: 0px  30px 20px 15px;  
}
/************************DERECHO LABORAL ****/
.sect7-contenedorSleg {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    align-content: center;
    justify-content: center;
}
.sect7-contenedorSleg .img7-sectSleg{
        margin: 0px;
        padding:0px;
        height: 150px;
}
.sect7-contenedorSleg .img7-sectSleg img{
    width: 100%;
    object-fit: cover;
}
.sect7-contenedorSleg .text7-sectSleg{
    padding: 0px;
    margin: 0px 0px;
    align-content: center;
    justify-content: center;
}

.sect7-contenedorSleg .text7-sectSleg h1{
    font-size: 15px; 
    margin: 0px;
    padding: 15px 0px 10px 20px;  
    letter-spacing: 1px;
}
.sect7-contenedorSleg .text7-sectSleg p{
    font-size: 10px;
    padding: 0px 40px 20px 20px;
    letter-spacing: 0px;    
}
/*<!--------------TEXTO SAGRILAF-PTEE-------------->*/
.sect8-contenedorSer{
    align-content: center;
    justify-content: center; 
}
.sect8-contenedorSer .text8-sectSer1{
    margin: 20px 0px;  
}
.sect8-contenedorSer .text8-sectSer2{
    margin: 20px 0px;
}
.sect8-contenedorSer .text8-sectSer1 h1{   
    font-size: 16px;
    padding: 0px 10px 10px 40px; 
}
.sect8-contenedorSer .text8-sectSer1 h2{
    font-size: 8px;  
    padding: 0px 0px 10px 40px; 
    letter-spacing: 0px; 
}
.sect8-contenedorSer .text8-sectSer1 p{
    font-size: 7px;    
    padding: 0px 20px 20px 40px;
    letter-spacing: 0px;
    line-height: 1.2;
}
.sect8-contenedorSer .text8-sectSer2 h2{
    font-size: 8px;
    line-height: 1.2;
    padding: 37px 25px 10px 0px;  
}
.sect8-contenedorSer .text8-sectSer2 p{
    font-size: 7px;
    padding: 0px 30px 20px 0px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------TEXTO LITIGIOS-------------->*/
.sect9-contenedorSer {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    align-content: center;
    justify-content: center;
}
.sect9-contenedorSer .img9-sectSer{  
    margin:0px;
    padding:0px;
    align-content: center;
    justify-content: center;
}
.sect9-contenedorSer .img9-sectSer img{
    margin:0px;
    padding:0px;
    height: 150px;
    object-fit: cover;
}
.sect9-contenedorSer .text9-sectSer{
    margin:0px;
    padding:0px;
    align-content: center;
    justify-content: center; 
}
.sect9-contenedorSer .text9-sectSer h1{
    font-size: 18px;
    padding: 10px 0px 10px 20px;  
    letter-spacing: 1px;
}
.sect9-contenedorSer .text9-sectSer p{
    font-size: 10px;
    padding: 0px 15px 20px 20px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------Societario y o comercial------------->*/
.sect10-contenedorSleg{
    align-content: center;
    justify-content: center; 
}
.sect1-contenedorIn .img1-sectIn{   
    object-fit: cover;
    width: 0px;
    margin: 0px;      
}
.sect10-contenedorSleg .img10-sectSleg img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
}
.sect10-contenedorSleg .text10-sectSleg h1{
    margin: 0px;
    font-size: 18px;
    padding: 20px 45px 10px 20px;  
    text-align: left;
    letter-spacing: 0px;
}
.sect10-contenedorSleg .text10-sectSleg p{
    font-size: 10px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
    font-weight: 100;
}
/*<!--------------DERECHO TRIBUTARIO------------->*/
.sect11-contenedorSleg {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    align-content: center;
    justify-content: center; 
}
.sect11-contenedorSleg .img11-sectSleg{
    margin:0px;
    padding:0px;
}
.sect11-contenedorSleg .img11-sectSleg img{
    margin:0px;
    padding:0px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.sect11-contenedorSleg .text11-sectSleg{
    margin:0px;
    padding:0px;
    align-content: center;
    justify-content: center;   
}
.sect11-contenedorSleg .text11-sectSleg h1{
    font-size: 18px;
    padding: 10px 0px 10px 20px;  
    letter-spacing: 1px;
}
.sect11-contenedorSleg .text11-sectSleg p{
    font-size: 10px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*************S E R V I C I O S***T R E S*****************/

/************************SERVICIOS TRIBUTARIOS ****/
.sect12-contenedorStri {
    margin:0px;
    padding:0px;
}
.sect12-contenedorStri .text12-sectStr{
    margin:0px;
    padding:0px;
}
.sect12-contenedorStri .img12-sectStriimg{
    margin:0px;
    padding:0px;
    object-fit: cover;
}
.sect12-contenedorStri .text12-sectStr h1{
    font-size: 15px;
    padding: 0px 60px 0px 15px;    
}
.sect12-contenedorStri .text12-sectStr p{
    font-size: 12px;
    padding: 0px  30px 20px 15px;  
}

/*<!--------------CONSUTRIA TRIBUTARIA-------------->*/
.sect13-contenedorStri {
    padding: 40px;    
    align-content: center;
    justify-content: center; 
    background: #F1F1F1;    
}
.sect13-contenedorStri .img13-sectStri{
    margin: 0px;
    padding: 0px;
}
.sect13-contenedorStri .img13-sectStri img{
    width: 100%;
    height: 150px; 
    margin: 0px;
    padding: 0px; 
    object-fit: cover;
}
.sect13-contenedorStri .text13-sectStri{
    margin: 0px; 
    padding:0px; 
}
.sect13-contenedorStri .text13-sectStri h1{
    line-height: 1.1;
    letter-spacing: 0.8;
    font-size: 18px;
    padding: 10px 0px 10px 20px;      
}
.sect13-contenedorStri .text13-sectStri p{
    font-size: 10px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------TEXTO PLANEACION TRIBUTARIA ------------->*/

.sect14-contenedorStri{    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 40px;
    align-content: center;
    justify-content: center; 
    
}
.sect14-contenedorStri .text14i-sectStri{
    margin: 0px;
    padding: 0px;
}
.sect14-contenedorStri .text14i-sectStri h1{
    font-size: 18px;   
    margin:0px;
    padding: 0px 20px 0px 0px;  
}
.sect14-contenedorStri .text14i-sectStri p{
    font-size: 8px;
    line-height: 1.1;
    padding: 10px 20px 0px 0px;
    letter-spacing: 0px;
}
.sect14-contenedorStri .text14d-sectStri{
    padding: 45px 0px 0px 0px;
    margin:0px;
}
.sect14-contenedorStri .text14d-sectStri .listaStri{
    font-size: 8px;     
    text-align: left;
    padding: 0px 0px 20px 0px; 
    letter-spacing: 0px;
    line-height: 1.1;
   
}
/*<!--------------PRECIOS DE TRANSFERENCIA-------------->*/
.sect15-contenedorStri {
    display: flex;
    background: #F1F1F1; 
    align-content: center;
    justify-content: center; 
    padding: 20px 20px 5px 20px;
}
.sect15-contenedorStri .img15-sectStri{
  margin:0px;
  padding:0px;
  flex-basis: 50%;
}
.sect15-contenedorStri .img15-sectStri img{
    margin:0px;
    padding:0px;
    
    height: 100%;
    object-fit: cover;
}
.sect15-contenedorStri .text15-sectStri{
   margin:0px;
   padding:0px;
   flex-basis: 50%;
}
.sect15-contenedorStri .text15-sectStri h1{
    margin:0px;
    font-size: 20px;
    padding: 10px 10px 10px 20px;  
    letter-spacing: 0px;
}
.sect15-contenedorStri .text15-sectStri p{
    margin:0px;
    font-size: 10px;    
    padding: 0px 12px 20px 20px;
    letter-spacing: 0px;
    line-height: 1.1;
}
/*<!--------------TEXTO Devoluciones y compensaciones de impuestos------------->*/
.sect16-contenedorStri{
    margin-bottom: 0px;
    align-content: center;
    justify-content: center; 
}
.sect16-contenedorStri .img16-sectStri{
    margin:0px;
    padding:0px;
    flex-basis: 50%;
    background: #f1f1f1; 
}
.sect16-contenedorStri .img16-sectStri img{
    margin:0px;
    padding:0px;
    height: 100%;
    object-fit: cover;
    padding-top: 0px;
}
.sect16-contenedorStri .text16-sectStri{
    margin:0px;
    padding:10px;
    flex-basis: 50%;
}
.sect16-contenedorStri .text16-sectStri h1{
    font-size: 20px;
    padding: 20px 20px 10px 30px;  
    letter-spacing: 0px;
    margin: 0px;
}
.sect16-contenedorStri .text16-sectStri p{
    font-size: 10px;  
    margin:0px;  
    line-height: 1.1;
    padding: 0px 15px 12px 30px;
    letter-spacing: 0px;
}
 
}
/*completo ok030525*/
@media screen and (max-width: 480px){
   
    .header{
        padding: 12px 0;
    }
    .header .menu{
        position: fixed;
        right: 0;
        top:0;       
        width: 300px;  /* ancho menu dispositivos*/
        height:100%;
        background-color: #e5e5e5;
        padding: 15px 30px 30px;
        overflow-y: auto;
        z-index: 1;
        transform: translateX(100%);
    }
    .header .menu.open{
        transform: none;
    }
    .header .menu .head{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
    }
    .header .menu img{
        display: flex;
        align-items: left;
        margin-right: auto;
        margin-left: 10px;
        vertical-align: middle;
        width: 62%;
        height: 62%;
        object-fit: cover;
    }
    .header .menu .close-menu-btn{
        height:35px;
        width: 35px;
        position:relative;
        display: inline-flex;
        align-items:center;
        justify-content: center;
        background-color: transparent;
        cursor: pointer;
        border:none;
    }
    .header .menu .close-menu-btn::before,
    .header .menu .close-menu-btn::after{
        content:'';
        position:absolute;
        width: 80%;
        height: 2px;
        background-color: #402026;
    }
    .header .menu .close-menu-btn::before{
        transform:rotate(45deg);
    }
    .header .menu .close-menu-btn::after{
        transform:rotate(-45deg)
    }
    .header .menu > ul > li{
        display:block;
    }
    .header .menu > ul > li:not(:last-child){
        margin-right: 0;
    }
    .header .menu li{
        border-bottom: 1px solid #402026;
    }
    .header .menu .bn1 li{ /*acomodar nosotros*/ 
        border-top: 1px solid #402026;
    }
    /*.header .menu li:first-child{
        border-top: 1px solid #402026;
    }*/
    .header .menu > ul > li > a {
        padding: 12px 0;
    }
    .header .menu > ul > .dropdown > a{
        padding-right: 34px;
    }
    .header .menu i{
        height: 34px;
        width: 34px;
        border: 1px solid #402026;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        cursor: pointer;
        top: 7px;
    }
    .header .menu .dropdown.active >i{
        background-color: #f1f1f1;
        transform: rotate(180deg);
    }
    .header .menu .s-menu{
        position: static;
        opacity: 1;
        transform:none;
        visibility: visible;
        padding: 0;
        transition:none;
        box-shadow: none;
        width: 100%;
        display: none;
    }
    .header .menu .dropdown.active > .s-menu{
        display: block;
    }
    .header .menu .s-menu li:last-child{
        border:none;
    }
    .header .menu .s-menu a{
        padding: 12px 0 12px 15px;
    }
    .header .menu .s-menu .s-menu a{
        padding-left:30px;
        font-weight: bold;
    }
    .header .menu .s-menu .s-menu .s-menu a{
      
        padding-left:40px;
    }
    .header .menu .s-menu span{
        padding-left:0px;  /*aqui paddin 30*/
        background-image: none;    
    }
    .header .menu .s-menu i{
        transform: none;
        right:0;
    }
    .navbarb .open-menu-btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 44px;
        cursor: pointer;
        position: relative;
        background-color: transparent;
        border:none;
        padding-right: 50px;
    }
    .navbarb .open-menu-btn .line{
        height: 2px;
        width: 30px;
        background-color: #f1f1f1;
        position:absolute;
    }
    .navbarb .open-menu-btn .line-1{
        transform: translateY(-8px);
    }
    .navbarb .open-menu-btn .line-3{
        transform: translateY(8px);
    }    
    .header .menu .nb1{    /*acomodar nosotros*/     
        justify-content: left; 
        text-align: left;  
        width: 100%;  
        border-top: 1px solid #402026;  
        border-bottom: 1px solid #402026; 
                
    }
    .header .menu .nb1 li{    /*acomodar nosotros*/      
        border-bottom: none; 
    }    
    .header .menu .nb1 li a{     /*acomodar nosotros*/     
        padding-left: 20px;
    }
    .header .menu .nb2{          
        display: block;
        justify-content:baseline; 
        text-align: left;
    }    
    .header .menu .s-menu .dropdown a{
        font-size: 11px;
    }
    /**********************buscador responsive*******************************/
    .header .navbarb {
        display:flex;
        justify-content:space-between;
        padding: 0; 
        width: 100%; 
        height: auto;
        align-items: center;
        background-color:  #402026;
    }
    .header{
        background-color: #402026;
    }
    #ctn-icon-search {        
       display: none;      
    }
    .header .logo{
        display: none;
    }    
    #box-search{
        display:none;
    }
/***HOME: IMAGEN FND OJO FEB202025*/
.header-contenido{
    width: 100%;
    height: 170px; 
    padding-top: 100px;
    background-size: 100% 100%;
}
.Enlace{
    width: 31%;
    height: 100px;
    margin: 0px 5px 0px 0px;
    padding: 8px;
    
}
.Enlace h1{
    font-size: 11px;     
    transform: translateY(60px);   
    
}
.Enlace .lista{
    font-size: 7px; 
    width: 100%;
    height: 80px;
    background-color: transparent;
    color: #333333;
    padding: 5px 0px 10px 10px;
    transform: translateY(100px);  
}
.Enlace:hover h1{
   display: none;
   color: #333333;

}
.Enlace:hover .lista{
    transform: translateY(2px);
    transition: all 500ms;   
}
/***********TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedor{   
    padding: 20px;
    margin: 0px;   
    flex-direction: column;

}
.sect1-contenedor .img-sect1{
    margin: 0px;
    padding: 10px 40px;   
}
.sect1-contenedor .text-sect1{
   width: 100%;
   height: 100px;
   margin:0px;
   padding: 5px 40px;
   align-content: center;
   text-align: left;
}
.sect1-contenedor .text-sect1 h1{
    font-size:20px;
}
.sect1-contenedor .text-sect1 p{
    font-size: 15px;
    margin:0px;
    padding: 0px 30px 0px 0px;
}
/******************GALERY IMG X 5************************/
.images .imag{
    /*texto dentro de la imagen*/
    height: 210px;   
}
.images .imag h2{    
    font-size: 8px;      
    padding: 2px;
}
/******************CONTACTENOS HOME************************/
.Formulario{
    flex-direction: column;  
    height: 280px;
    margin:0px;
    padding:0px;
    align-content: center;
    border-top: 2px groove #59363C;
}
.Formulario .text-form{ 
 
    width: 100%;
    height: 110px;
    padding:0px;
    align-items: center;
    justify-content: end;
    
}
.Formulario .text-form h1{
    width: 330px;
    height: 60%;
    font-size: 18px;  
    margin:0px 90px; 
    padding: 15px;
    align-items: center;
    text-align: center;
    justify-content: center;
    
 } 
 .Formulario .text-form img{
    width: 100%;
    height:100%;
    object-fit: cover;
    margin:0px;
    padding:0px;
 }
 .Formulario .cuadro-form{
    justify-content: center;
    align-content: center;
    width: 330px;
    height: 174px;
}
.form { 
    width: 330px;
    height: 174px;
 } 
.form_container{
    gap: 5px;
    grid-auto-columns: 100%;
    justify-content: center;   
    padding: 1px;   
}
.form_cta{
    font-size: 10px;
    margin: 1px 10%;
    padding: 8px 12px;   
}
.form_input{
    font-size: 9px;
    padding: 0.2em;   
}
.form_input--message{
    margin: 0px;
    padding: 0.2em;
    height: 50px;  
}
/*********************************************************/
.footer{
    display: flex;

}
.footerT .footer{
    flex-direction: row;
    /*padding: 10px 0pX 10px 0px;*/
    justify-content: left;
    
}
.footerT .footer .logoW{
    /*width: 100px;
    height: 70px;   */
    margin: 0px;
    padding:0px;
    padding-left: 10px;
    
}
.footerT .footer .logoW img{ 
    object-fit: cover;
}
.footerT .footer .lineB{
    height: 72px;
    margin: 0px;
}
.footerT .footer .link{
    margin: 15px;
    font-size: 8px;
}
/***********TEXTO IZQ - IMAGEN DERECHA********************/
.sect1-contenedorUS .text-sect1US h1{
    font-size: 12px;
    padding: 0px 0px 0px 20px;  
    letter-spacing: 0px;
    
}
.sect1-contenedorUS .text-sect1US p{
    font-size: 13px;
    text-align: left;
    padding: 0px  30px 0px 20px;    
}
/***********TEXTO HISTORIA********************/

.sect2-contenedorUS{    
    flex-direction: column;  
    margin: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    justify-content: center;
    align-content: center;
    align-items: center;
    border: 1px groove #f1f1f1;
}

.sect2-contenedorUS .text2-sect1US{
    margin:0px;
    padding:5px;   
}
.sect2-contenedorUS .text2-sect1US h1{
    font-size: 20px;    
    text-align: center; 
}
.sect2-contenedorUS .Parrafo2-sect1US{
    margin:0px;
    padding:5px;
}
.sect2-contenedorUS .Parrafo2-sect1US p{
    font-size: 9px;
    margin:0px;
    padding:0px;
    text-align: left;
}
/***********TEXTO VALORES********************/
.sect3-contenedorUS{    
    flex-direction: column;  
    margin: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    justify-content: center;
    align-content: center;
    align-items: center;
    border: 1px groove #f1f1f1;
}
.sect3-contenedorUS .text3-sect2US{
    margin:0px;
    padding:5px;
}
.sect3-contenedorUS .text3-sect2US h1{
    font-size: 20px;
    text-align: center;          
}
.sect3-contenedorUS .images-sect2US{
    margin: 0px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between; 
    padding: 0px 1px 0px 0px; 
}
.sect3-contenedorUS .images-sect2US .val{
    padding: 0px 10px 0px 0px;
    text-align: center;     
}
.sect3-contenedorUS .images-sect2US .val img{
    width: 50px;
    height: 50px;
    padding:0;
    object-fit: cover;
}
.sect3-contenedorUS .images-sect2US .val h2{
    font-size: 12px;    
}
/***********TEXTO MISION VISION********************/
.sect4-contenedorUS{    
    flex-direction: column;  
    margin: 20px;
    width: 90%;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    justify-content: center;
    align-content: center;
    align-items: center;
    border: 1px groove #f1f1f1;
}
.sect4-contenedorUS .text4-sect3US {
    margin: 5px;
}
.sect4-contenedorUS .text5-sect4US{
    margin: 5px;     
}
.sect4-contenedorUS .text4-sect3US h1,
.sect4-contenedorUS .text5-sect4US h1{
    font-size: 27px;
    padding: 0px;
    padding: 20px 20px 0px 20px;      
}
.sect4-contenedorUS .text4-sect3US p,
.sect4-contenedorUS .text5-sect4US p{
    font-size: 11px;
    margin: 0px;
    padding: 0px 20px 20px 20px;
}
/*******************C O N T A C T O***********************/
/***********SECTION CONTACT********************/
.Formulario2{
    flex-direction: column;
}
.Formulario2 .cuadro-form2{ /*tamaño contenedor formulario*/
    padding: 0px 0px;
    padding-bottom: 10px;
    width:100%;
    height: 100%;
}
.Formulario2 .text-form2
{   
    width: 100%;
    height: 50px;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.Formulario2 .text-form2 img{
    width: 100%;
    height: 50px;
    object-fit: cover;
}
.Formulario2 .text-form2 h1{ /*texto de la imagen*/
    width:100%;
    height: 100%;
    padding: 10px 20px;
    margin: 0px;
    align-content: center;
    font-size: 12px; 
   /* padding-right: 150px;*/
}
.Formulario2 .cuadro-form2 h1{/*titulo formulario*/
    font-size: 23px;   
    margin: 0px;
    
}
.Formulario2 .form {
    width: 100%;
    height: 180px;    
    padding: 0px;
 }
.Formulario2 .form_container{   
    gap: 3px;  
    padding: 0px 30px;
    margin: 0px;
    
}
.Formulario2 .form_cta{    
    font-size: 13px;     
    padding: 3px 0px;
    margin: 0px;
    width: 100%;
}
.Formulario2 .form_input{
    font-size: 10px;  
    margin: 0px;  
    padding: 7px;
}
.Formulario2 .form_input--message{
    margin: 0px;
    padding: 7px;
    height: 50px;  
}
/***********TEXTO IZQ - IMAGEN DERECHA PRESIDENT********************/
.sect-contenedorContact{    
    flex-direction: column;  
    margin: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    justify-content: center;
    align-content: center;
    align-items: center;
    border: 1px groove #f1f1f1;
}
.sect-contenedorContact .text-sectContact{
    margin: 10px 20px;
    align-items: center;
}
.sect-contenedorContact .img-sectContact{
    margin: 0px;
    padding: 20px;
}
.sect-contenedorContact .img-sectContact img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    object-fit: cover;
}
.sect-contenedorContact .text-sectContact h1{    
    font-size: 20px;
    margin: 0;
    padding:0;    
}
.sect-contenedorContact .img-sectContact h1{
    font-size: 9px;
    padding: 5px 0px 0px 2px;  
}
.sect-contenedorContact .img-sectContact h2{
    font-size: 8px;
    padding: 0px;
    margin:0px; 
    line-height: 1.5;
}
/***************I N D U S T R I A S***********************/
/***********TEXTO ********************/
.sect-contenedorIn{
    height: 100px;
}
.text-sectIn{ 
    width: 100%;  
    height: 100px;    
}
.text-sectIn h1{    
    font-size: 16px;
    padding-left: 40px;
}
/***********IMG - TEXTO MANUFACTURA********************/
.sect1-contenedorIn{
    border: 1px groove #f1f1f1;
    margin: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px;
    align-content: center;
    justify-content: center; 
}
.sect1-contenedorIn .img1-sectIn{
    flex-basis: 50%;       
}
.sect1-contenedorIn .img1-sectIn img{
    object-fit: cover;
}
.sect1-contenedorIn .text1-sectIn h1{
    font-size: 18px;
    letter-spacing: 0px;
    margin: 10px 0px 10px 20px;
}
.sect1-contenedorIn .text1-sectIn p{
    font-size: 8px;
    margin: 0px 20px 20px 20px;
    text-align: left;
}
/***********IMG - TEXTO TRANSPORTE Y LOGISTICA********************/
.sect2-contenedorIn{
    border: 1px groove #f1f1f1;
    margin: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    align-content: center;
    justify-content: center;  
}
.sect2-contenedorIn .img2-sectIn{
    flex-basis: 50%;  
}
.sect2-contenedorIn .img2-sectIn img{
    object-fit: cover;
}
.sect2-contenedorIn .text2-sectIn h1{
    font-size: 18px;
    letter-spacing: 0px;
    margin: 20px 20px 10px 20px;
}
.sect2-contenedorIn .text2-sectIn p{
    font-size: 8px;
    margin: 0px 20px 30px 20px;
    text-align: left;
}
/***********IMG - TEXTO TECNOLOGIA MEDIOS********************/
.sect3-contenedorIn{
    border: 1px groove #f1f1f1;
    margin: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px;
    align-content: center;
    justify-content: center; 
}
.sect3-contenedorIn .img3-sectIn{
    flex-basis: 50%;   
}
.sect3-contenedorIn .img3-sectIn img{
    object-fit: cover;
}
.sect3-contenedorIn .text3-sectIn h1{
    font-size: 9px;    
    padding: 20px 2px 10px 10px;  
}
.sect3-contenedorIn .text3-sectIn p{
    font-size: 8px;    
    padding: 0px 20px 20px 15px; 
    text-align: left; 
}
/***********IMG - TEXTO SECTOR FINANCIER********************/
.sect4-contenedorIn{
    border: 1px groove #f1f1f1;
    margin: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px;
    align-content: center;
    justify-content: center; 
}
.sect4-contenedorIn .img4-sectIn{
    flex-basis: 50%;      
}
.sect4-contenedorIn .img4-sectIn img{
    object-fit: cover;
    object-position: left top;
}
.sect4-contenedorIn .text4-sectIn h1{
    font-size: 18px;
    margin: 10px 30px 10px 20px; 
    letter-spacing: 0px;   
}
.sect4-contenedorIn .text4-sectIn p{
    font-size: 8px;
    margin: 0px 20px 20px 20px;  
    text-align: left;  
}
/***********IMG - TEXTO SERV PROFESIONALES*******************/
.sect5-contenedorIn{
    border: 1px groove #f1f1f1;
    margin: 20px;
    width: 90%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px;
    align-content: center;
    justify-content: center;   
}
.sect5-contenedorIn .img5-sectIn{
    flex-basis: 50%;       
}
.sect5-contenedorIn .img5-sectIn img{
    object-fit: cover;
}
.sect5-contenedorIn .text5-sectIn h1{
    font-size: 18px;
    margin: 10px 20px 10px 20px;
    letter-spacing: 0px;
}
.sect5-contenedorIn .text5-sectIn p{
    font-size: 8px;    
    margin: 0px 20px 20px 20px; 
    text-align: left;
}

/*****************S E R V I C I O S***********************/
/************************AUDITORIA Y ASEOSRAMIENTO ****/
.sect1-contenedorSer{    
    margin: 0px;
    padding:0px;
}
.sect1-contenedorSer .text1-sectSer{
    margin:0px;
    padding:0px;
    margin-bottom: 4px;  
}
.sect1-contenedorSer .text1-sectSer h1{
    font-size: 15px;     
    letter-spacing: 0px;  
    padding: 0px 50px 0px 15px;      
}
.sect1-contenedorSer .text1-sectSer p{
    font-size: 12px;   
    padding: 0px  30px 20px 15px;    
}
/************************REVISORIA FISCAL ****/
.sect2-contenedorSer{
    margin: 20px;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    
}
.sect2-contenedorSer .text2i-sectSer{
    margin: 0px;
    padding: 0px;
    
}
.sect2-contenedorSer .text2i-sectSer h1{
    font-size: 17px;
    padding: 0px 0px 0px 5px;  
}
.sect2-contenedorSer .text2i-sectSer p{
    font-size: 8px;    
    padding: 0px  0px 0px 5px;    
}
.sect2-contenedorSer .text2d-sectSer{
    margin: 0px;
    padding: 0px;
    margin-top: 5px;    
}
.sect2-contenedorSer .text2d-sectSer h1{
    font-size: 9px;  
    letter-spacing: 0px; 
}
.sect2-contenedorSer .text2d-sectSer .listaSer{
    font-size: 8px;
    padding: 0px 0px 10px 25px; 
    letter-spacing: 0px;   
}
/************************AUDITORIA EXTERNA ****/
.sect3-contenedorSer{
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    background-color: #f1f1f1;
    align-content: center;
    justify-content: center; 
}
.sect3-contenedorSer .img3-sectSer{
    margin: 0px;
    padding:0px;
    
}
.sect3-contenedorSer .img3-sectSer img{
   object-fit: cover;
   height: 150px;
   
}
.sect3-contenedorSer .text3-sectSer h1{
    font-size: 18px;
    padding: 10px 20px 0px 20px;  
    letter-spacing: 1px;
}
.sect3-contenedorSer .text3-sectSer p{
    font-size: 8px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
}
/************************AUDITORIA INTERNA ****/
.sect4-contenedorSer{
    flex-direction: column;    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    background-color: #ffffff;
    align-content: center;
    justify-content: center;
}
.sect4-contenedorSer .img4-sectSer img{
    object-fit: cover;
    height: 150px;
}
.sect4-contenedorSer .text4-sectSer{
    border-top: 1px groove #f1f1f1;
    border-left: 1px groove #f1f1f1;
    border-right: 1px groove #f1f1f1;
}
.sect4-contenedorSer .text4-sectSer h1{
    font-size: 18px;   
    padding: 10px 20px 10px 20px;
    letter-spacing: 1px;
    margin: 0px;
}
.sect4-contenedorSer .text4-sectSer p{
    font-size: 8px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
}
/*--------------TEXTO REVSIONES LIMITADAS FINANCIERAS--------------*/
.sect5-contenedorSer{
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    background-color: #402026;
    align-content: center;
    justify-content: center;
}
.sect5-contenedorSer .img5-sectSer img{
    object-fit: cover;
    height: 150px;
}
.sect5-contenedorSer .text5-sectSer h1{
    font-size: 18px;
    margin-bottom: 10px;   
    padding: 10px 20px 0px 20px;
    letter-spacing: 1px;
}
.sect5-contenedorSer .text5-sectSer p{
    font-size: 8px;    
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
}
/*<!--------------TEXTO Procedimientos previamente convenidos------------->*/
.sect6-contenedorSer{
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    background-color: #402026;
    align-content: center;
    justify-content: center;
}
.sect6-contenedorSer .img6-sectSer img{
    object-fit: cover;
    height: 150px;
}
.sect6-contenedorSer .text6-sectSer h1{
    font-size: 16px;
    margin-bottom: 10px; 
    padding: 10px 20px 0px 20px;
    letter-spacing: 0px;
}
.sect6-contenedorSer .text6-sectSer p{
    font-size: 8px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
}
/*********************************************************/
/*************S E R V I C I O S***D O S*******************/

/************************SERVICIOS LEGALES ****/
.sect6-contenedorSleg{
    margin: 0px;
    padding:0px;
}
.sect6-contenedorSleg .img6-sectSleg{
    margin:0px;
    padding:0px;
    object-fit: cover;
}
.sect6-contenedorSleg .text6-sectSleg h1{
    font-size: 15px;
    padding: 0px 60px 0px 15px;      
}
.sect6-contenedorSleg .text6-sectSleg p{
    font-size: 12px;   
    padding: 0px  30px 20px 15px;  
}
/************************DERECHO LABORAL ****/
.sect7-contenedorSleg {
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    align-content: center;
    justify-content: center;
}
.sect7-contenedorSleg .img7-sectSleg{
        margin: 0px;
        padding:0px;
        height: 150px;
}
.sect7-contenedorSleg .img7-sectSleg img{
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.sect7-contenedorSleg .text7-sectSleg{
    padding: 0px;
    margin: 0px 0px;
    align-content: center;
    justify-content: center;
    border-top: 1px groove #f1f1f1;
    border-left: 1px groove #f1f1f1;
    border-right: 1px groove #f1f1f1;
}

.sect7-contenedorSleg .text7-sectSleg h1{
    font-size: 15px; 
    margin: 0px;
    padding: 15px 0px 10px 20px;  
    letter-spacing: 1px;
}
.sect7-contenedorSleg .text7-sectSleg p{
    font-size: 10px;
    padding: 0px 40px 20px 20px;
    letter-spacing: 0px;    
}
/*<!--------------TEXTO SAGRILAF-PTEE-------------->*/
.sect8-contenedorSer{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    align-content: center;
    justify-content: center; 
}
.sect8-contenedorSer .text8-sectSer1{
    margin: 20px 0px;  
}
.sect8-contenedorSer .text8-sectSer2{
    margin: 20px 0px;
}
.sect8-contenedorSer .text8-sectSer1 h1{   
    font-size: 16px;
    padding: 0px 10px 10px 40px; 
}
.sect8-contenedorSer .text8-sectSer1 h2{
    font-size: 8px;  
    padding: 0px 0px 10px 40px; 
    letter-spacing: 0px; 
}
.sect8-contenedorSer .text8-sectSer1 p{
    font-size: 7px;    
    padding: 0px 20px 20px 40px;
    letter-spacing: 0px;
    line-height: 1.2;
}
.sect8-contenedorSer .text8-sectSer2 h2{
    font-size: 8px;
    line-height: 1.2;
    padding: 37px 25px 10px 0px;  
}
.sect8-contenedorSer .text8-sectSer2 p{
    font-size: 7px;
    padding: 0px 30px 20px 0px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------TEXTO LITIGIOS-------------->*/
.sect9-contenedorSer {
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    align-content: center;
    justify-content: center;
}
.sect9-contenedorSer .img9-sectSer{  
    margin:0px;
    padding:0px;
}
.sect9-contenedorSer .img9-sectSer img{
    margin:0px;
    padding:0px;
    height: 150px;
    object-fit: cover;
}
.sect9-contenedorSer .text9-sectSer{
    margin:0px;
    padding:0px;
    align-content: center;
    justify-content: center; 
    border-bottom: 1px groove #f1f1f1;
    border-left: 1px groove #f1f1f1;
    border-right: 1px groove #f1f1f1;
}
.sect9-contenedorSer .text9-sectSer h1{
    font-size: 18px;
    padding: 10px 0px 10px 20px;  
    letter-spacing: 1px;
}
.sect9-contenedorSer .text9-sectSer p{
    font-size: 10px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------Societario y o comercial------------->*/
.sect10-contenedorSleg{
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    align-content: center;
    justify-content: center; 
}
.sect1-contenedorIn .img1-sectIn{   
    object-fit: cover;
    width: 0px;
    margin: 0px;      
}
.sect10-contenedorSleg .img10-sectSleg img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    height: 150px;
}
.sect10-contenedorSleg .text10-sectSleg h1{
    margin: 0px;
    font-size: 18px;
    padding: 20px 45px 10px 20px;  
    text-align: left;
    letter-spacing: 0px;
}
.sect10-contenedorSleg .text10-sectSleg p{
    font-size: 10px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
    font-weight: 100;
}
/*<!--------------DERECHO TRIBUTARIO------------->*/
.sect11-contenedorSleg {
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    align-content: center;
    justify-content: center; 
}
.sect11-contenedorSleg .img11-sectSleg{
    margin:0px;
    padding:0px;
}
.sect11-contenedorSleg .img11-sectSleg img{
    margin:0px;
    padding:0px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.sect11-contenedorSleg .text11-sectSleg{
    margin:0px;
    padding:0px;
    align-content: center;
    justify-content: center; 

    border-bottom: 1px groove #f1f1f1;
    border-left: 1px groove #f1f1f1;
    border-right: 1px groove #f1f1f1;
}
.sect11-contenedorSleg .text11-sectSleg h1{
    font-size: 18px;
    padding: 10px 0px 10px 20px;  
    letter-spacing: 1px;
}
.sect11-contenedorSleg .text11-sectSleg p{
    font-size: 10px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*************S E R V I C I O S***T R E S*****************/

/************************SERVICIOS TRIBUTARIOS ****/
.sect12-contenedorStri {
    margin:0px;
    padding:0px;
}
.sect12-contenedorStri .text12-sectStr{
    margin:0px;
    padding:0px;
}
.sect12-contenedorStri .img12-sectStriimg{
    margin:0px;
    padding:0px;
    object-fit: cover;
}
.sect12-contenedorStri .text12-sectStr h1{
    font-size: 15px;
    padding: 0px 60px 0px 15px;    
}
.sect12-contenedorStri .text12-sectStr p{
    font-size: 12px;
    padding: 0px  30px 20px 15px;  
}

/*<!--------------CONSUTRIA TRIBUTARIA-------------->*/
.sect13-contenedorStri {
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    align-content: center;
    justify-content: center; 
    background: #F1F1F1;    
}
.sect13-contenedorStri .img13-sectStri{
    margin: 0px;
    padding: 0px;
}
.sect13-contenedorStri .img13-sectStri img{
    width: 100%;
    height: 150px; 
    margin: 0px;
    padding: 0px; 
    object-fit: cover;
}
.sect13-contenedorStri .text13-sectStri{
    margin: 0px; 
    padding:0px; 
}
.sect13-contenedorStri .text13-sectStri h1{
    line-height: 1.1;
    letter-spacing: 0.8;
    font-size: 18px;
    padding: 10px 0px 10px 20px;      
}
.sect13-contenedorStri .text13-sectStri p{
    font-size: 10px;
    padding: 0px 20px 20px 20px;
    letter-spacing: 0px;
    line-height: 1.2;
}
/*<!--------------TEXTO PLANEACION TRIBUTARIA ------------->*/

.sect14-contenedorStri{    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
    align-content: center;
    justify-content: center; 
    
}
.sect14-contenedorStri .text14i-sectStri{
    margin: 0px;
    padding: 0px;
}
.sect14-contenedorStri .text14i-sectStri h1{
    font-size: 18px;   
    margin:0px;
    padding: 0px 20px 0px 0px;  
}
.sect14-contenedorStri .text14i-sectStri p{
    font-size: 8px;
    line-height: 1.1;
    padding: 10px 20px 0px 0px;
    letter-spacing: 0px;
}
.sect14-contenedorStri .text14d-sectStri{
    padding: 45px 0px 0px 0px;
    margin:0px;
}
.sect14-contenedorStri .text14d-sectStri .listaStri{
    font-size: 8px;     
    text-align: left;
    padding: 0px 0px 20px 0px; 
    letter-spacing: 0px;
    line-height: 1.1;
   
}
/*<!--------------PRECIOS DE TRANSFERENCIA-------------->*/
.sect15-contenedorStri {
    display: flex;
    background: #F1F1F1; 
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    align-content: center;
    justify-content: center;    
}
.sect15-contenedorStri .img15-sectStri{
  margin:0px;
  padding:0px;
  flex-basis: 50%;
}
.sect15-contenedorStri .img15-sectStri img{
    margin:0px;
    padding:0px;
    
    height: 100%;
    object-fit: cover;
}
.sect15-contenedorStri .text15-sectStri{
   margin:0px;
   padding:0px;
   flex-basis: 50%;
}
.sect15-contenedorStri .text15-sectStri h1{
    margin:0px;
    font-size: 20px;
    padding: 10px 10px 10px 20px;  
    letter-spacing: 0px;
}
.sect15-contenedorStri .text15-sectStri p{
    margin:0px;
    font-size: 10px;    
    padding: 0px 12px 20px 20px;
    letter-spacing: 0px;
    line-height: 1.1;
}
/*<!--------------TEXTO Devoluciones y compensaciones de impuestos------------->*/
.sect16-contenedorStri{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    align-content: center;
    justify-content: center; 
}
.sect16-contenedorStri .img16-sectStri{
    margin:0px;
    padding:0px;
    flex-basis: 50%;
    background: #f1f1f1; 
}
.sect16-contenedorStri .img16-sectStri img{
    margin:0px;
    padding:0px;
    height: 100%;
    object-fit: cover;
    padding-top: 3px;
}
.sect16-contenedorStri .text16-sectStri{
    margin:0px;
    padding:0px;
    flex-basis: 50%;
}
.sect16-contenedorStri .text16-sectStri h1{
    font-size: 18px;
    padding: 20px 10px 10px 12px;  
    letter-spacing: 0px;
    margin: 0px;
}
.sect16-contenedorStri .text16-sectStri p{
    font-size: 8px;  
    margin:0px;  
    line-height: 1.1;
    padding: 0px 12px 12px 12px;
    letter-spacing: 0px;
}
    
}

@media (max-width: 320px){
    .Enlace h1 {
        font-size: 9px;
        transform: translateY(60px);
    }
    .Enlace .lista {
        font-size: 6px;
       
    }


    /*****************images x 5 ******************/
    .images .imag h2 {
        font-size: 6px;
        padding: 2px;
    }

    /*************************Nosotros*************/
    .sect1-contenedorUS .text-sect1US p {
        font-size: 11px;
        
    }

    /*************serv 1**********/
    .sect1-contenedorSer .text1-sectSer p {
        font-size: 11px;
    }

/*************serv 2**********/
    .sect6-contenedorSleg .text6-sectSleg p {
        font-size: 10px;
    }
}
