@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* -------------------------- */
/* GLOBALES ====================================================================== */
/* ROOT VARIALBES */
*,::before,::after {
    box-sizing: border-box
}

:root {
    --primary-color: #000000;
    --secondary-color: #ff0000;
    --background-color: #f5f5f5;
    --text-color: #333333;
    --accent-color: #d3d3d3;
    --accent-btn: #930002;
}

body {
    font-family: "Roboto", sans-serif;
    /* font-family: "PT Serif", serif; */
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    
}

html {
    font-size: 14px;
}

.contenedor{
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.contenedor {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}


a{
    color: var(--color-dark);
    text-decoration: none;
}


img {
    display: block;
    width: 100%;
}

h1{
    font-weight: 800;
    font-size: 1.8rem;
}

h2 {
    font-size: 1.4rem;
}

h3 {
    font-size: 0.87rem;
}

h4 {
    font-size: 0.8rem;
}

h5 {
    font-size: 0.77rem;
}

p{
    color: var(--color-dark-variant);
}

b{
    color: var(--color-primary);
}

.primary {
    color: var(--color-primary);
}
.danger {
    color: var(--color-primary);
}
.success {
    color: var(--color-success);
}
.warning {
    color: var(--color-warning);
} 


/* CODIGO HEADER */



header{
    background: var(--primary-color);
    height: 85px;
    display: flex;
    align-items: center;
    position: -webkit-sticky; /* Para soporte en Safari */
    position: sticky;
    top: 0;
    z-index: 1000; /* Para asegurarse de que el menú esté por encima de otros elementos */

}
header nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    color: #fff;
}

header nav ul{
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    /* font-weight: 500; */
    letter-spacing: 0.7px;
    font-family: "PT Serif", serif;
    /* font-family: "Inter", sans-serif; */

}

header nav .logo{
    margin-right: 20px;
}
.logo img{
    width: 120px;
}


header nav ul li a{
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
header nav ul li a:hover{
    background-color: #C93032;
}


.contact-btn{
    font-size: 14px;
    margin-left: 20px;
    background-color: var(--accent-btn);
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s ease;
}
.contact-btn:hover{
    background-color: #C93032;
}

.btn-activo{
    background-color: #C93032;
    padding: 5px 10px;
    border-radius: 5px;
}




/* Estilos para la sección del carrusel */
.carousel-section {
    position: relative;
    width: 100%;
    /* max-width: 1340px; */
    margin: auto;
    overflow: hidden;
}

.carousel-container {
    /* display: flex; */
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    display: flex;
}

.ad-container {
    min-width: 90%;
    box-sizing: border-box;
    width: 100%;
    position: relative; /* Asegura que el contenido absoluto se posicione correctamente */
    /* max-height: 622px; */
}


.ad-container img{
    width: 100%;
    max-height: 662px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: var(--color-negro);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: var(--color-negro-claro);
}

.dots-container {
    text-align: center;
    padding: 20px;
    background: var(--color-blanco-oscuro);
    position: absolute;
    bottom: 10px;
    background: transparent;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #FD802F;
}

.promo-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    text-align: center;
    color: #fff;
    width: 80%;
    
}
.promo-text h2{
    color: #FFE6BF;
    font-size: 50px;
    font-family: "PT Serif", serif;
}
.promo-text p{
    font-family: "Inter", sans-serif;
    font-size: 22px;
}




/* Contenido del main */

main{
    margin-top: 60px!important;
    padding: 0 10px;
}
.div-content-main{
    display: flex;
    justify-content: space-between;
}
.section-banner{
    max-width: 217px;
}
.section-banner img{
    max-width: 217px;
}


.content-section{
    width: 70%;
    margin: 0 15px;
}

.title-section{
    display: flex;
    justify-content: space-between;
    font-family: "PT Serif", serif;
}
.title-section h2{
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.title-section a{
    font-size: 18px;
    font-weight: 600;
    color: #930002;
    transition: all .3s ease;
}
.title-section a:hover{
    color: #DD2D2D;
}



.content-grid{
    position: relative;
    display: flex;
    width: 100%;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;

}
.content-grid article{
    width: 31.90%;
}

.content-item img{
    height: 182px;
}
.content-item h3{
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    position: absolute;
    top: 0;
    color: #fff;
    padding: 10px;
}
.content-item h2{
    font-family: "Inter", sans-serif;
    font-size: 18px;
    padding: 0px 10px;
    padding-bottom: 5px;
}

.content-item .fecha-article{
  display: flex;
  justify-content: space-between;
  padding: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
}
.content-item .fecha-article p{
  padding: 0;
}
.content-item p{

  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 0 10px 10px;
}

/* .content-item a{
    margin: 10px;
    color: #DD2D2D;
    font-weight: 600;
} */


.public-video{
   margin: 80px 0;
}
.public-video, .public-video video{
    width: 100%;
    /* max-width: 997px; */
    max-height: 451px;
}

.categoria-banner{
    margin-top: 15px;
}

.categoria-banner .title{
    background-color: var(--accent-btn);
}
.categoria-banner .title h3{
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 10px;
}
.categoria-banner .categorias-b{
    background-color: #F1F1F1;
    margin-bottom: 20px;
    
}
.categoria-banner .categorias-b{
    margin-top: 20px;
    min-height: 510px;
    
}
.categoria-banner .categorias-b ul li{
    font-family: "Inter", sans-serif;
    padding: 10px 10px;
    margin: 5px 0;
    font-size: 14px;
    color: #272727;
    font-weight: 600;
    
}

.buscador-banner{
    padding: 10px;
    background-color: #F1F1F1;
}
.buscador-banner h3{
    font-family: "Inter", sans-serif;
    font-size: 15px;
    margin-top: 5px;
    color: #151515;
}

.buscador-banner .buscar{
    position: relative;
    margin-top: 10px;
}
.buscador-banner .buscar i{
    left: 150px;
    position:absolute;
    padding: 10px;
}
.buscador-banner .buscar input{
    padding: 10px 30px 10px 10px;
    font-size: 14px;
    width: 100%;
}

.service{
    margin-top: 25px;
}
.service h3{
    padding-bottom: 15px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #151515;
}
.service ul li{
    padding: 10px 5px;
    margin-bottom: 5px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: #272727;
    font-weight: 600;
}

.btn-anlace{
    width: 100%;
    text-align: center;
    padding: 15px 0;
}
.btn-anlace a{
    color: #930002;
    border: 1px solid #930002;
    padding: 15px 40px;
    border-radius: 5px;
    transition: all .3s ease;
}
.btn-anlace a:hover{
    color: #fff;
    background-color: #C93032;
    border: 1px solid #C93032;
}


/* Seccion de contacto */

.section-contacto{
    background-color: var(--primary-color);
    padding-top: 20px;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.encabezado-contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
}
.encabezado-contacto h3{
    font-size: 28px;
    color: #D99020;
    font-family: "PT Serif", serif;
    margin: 15px 0 20px;
}
.encabezado-contacto img{
    width: 205px;
    margin-bottom: 15px;
}
.encabezado-contacto p{
    color: #C8CBD0;
    font-family: "PT Serif", serif;
}

.hr{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 25px 0;
}
hr{
    width: 75%;
    border: 1px solid #433837;
}

.info-form{
    display: flex;
    justify-content: center;
    padding: 0 100px;
    color: #fff;
    /* font-family: "Inter", sans-serif; */
    font-family: "PT Serif", serif;
}
.info-contacto{
    width: 40%;
}
.form-contacto{
    width: 40%;
}
.info-contacto, h3{
    font-size: 22px;
    padding-right: 20px;
    text-transform: uppercase;
    text-align: center;
}

.info label{
    font-family: "PT Serif", serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
}
.info label i{
    margin-right: 5px;
}
.info {
margin-top: 25px;
}
.info p{
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #C8CBD0;
    margin-top: 10px;
    text-transform: none;
}
.info span{
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

.redes{
    margin-top: 10px;
}
.info i{
    margin-right: 15px;
    font-size: 16px;
}

.form-contacto{
    background-color: #101010;
    padding: 25px 30px;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    border-radius: 5px;
}
.form-contacto h3{
    margin-bottom: 22px;
    font-family: "PT Serif", serif;
    padding: 10px 0;
}
.row-input{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.row-input label{
    font-size: 18px;
    font-family: "PT Serif", serif;
}
.row-input input, .row-input textarea{
    background: transparent;
    color: #C8CBD0;
    padding: 10px;
    font-size: 18px;
    border-bottom: 1px solid #3D3D3D;
}
.btn-contacto{
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background-color: #930002;
    font-family: "PT Serif", serif;
    color: #fff;
    margin-top: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 5px;
}

.btn-contacto:hover{
    background-color: var(--secondary-color);
}



footer{
    background-color: var(--primary-color);
    padding: 30px 160px;
}
footer img{
    width: 125px;
}

.navfooter{
    display: flex;
    justify-content: space-between;
    color: #fff;
    margin-top: 40px;
}
.divNav{
    display: flex;
    flex-direction: column;
}
.divNav h4{
    color: #fff;
    font-size: 18px;
     font-family: "PT Serif", serif;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.divNav a{
    color: #E9E9EA;
    font-size: 15px;
    font-family: "PT Serif", serif;
    padding: 10px 0;
    margin-bottom: 10px;
}
.divNav a i{
    margin-right: 10px;
}

.copyright{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.copy{
    width: 55%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 16px;
    font-family: "PT Serif", serif;
    border-top: 1px solid #fff;
    padding: 0 15px;
    padding-top: 10px;
}
.copy select{
background: transparent;
    color: #fff;
}

.lenguaje i{
    font-size: 12px;
}


.navbar{
    font-size: 22px;
    padding: 5px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: none;
}

.mactivo{
    display: block;
}
.mainactivo{
    display: none;
}



/* Contenido de pagina */

.content_page {
    padding: 0 45px 50px;
}

.content_page h2 {
    font-size: 26px;
    font-weight: 600;
    font-family: "PT Serif", serif;
    color: var(--primary-color);
    position: relative;
    text-transform: uppercase;
    padding-bottom: 5px; /* Espacio para el borde */
}

.content_page h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background-color: #CB2224;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px;
}

.content_page p {
    padding-top: 25px;
    font-family: "PT Serif", serif;
    color: var(--primary-color);
}


.categoria_juridica{
    display: flex;
    /* justify-content: space-around; */
    background-color: #fff;
    margin-top: 15px;

    flex-wrap: wrap;
}
.categoria_juridica .cat{
    padding: 10px;
    font-weight: 600;
    display: flex;
    width: 25%;

}
.categoria_juridica .cat i{
    font-size: 18px;
    color: #2D983E;
    margin-right: 5px;
}


.modalidades_juridica{
    margin-top: 20px;
    
}
.modalidades_juridica h3{
    text-align: left;
    text-transform: none;
    font-family: "PT Serif", serif;
    margin-bottom: 40px;

}

.icon-exitT{
    color: var(--secondary-color)!important;
    margin-left: 10px;
    cursor: pointer;
}


.div-content {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 20px;
}

.div-content .modalidades {
    flex: 1 1 calc(50% - 20px); /* Ajusta el ancho para tener en cuenta el gap */
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho */
}

.modalidades h4{
    font-size: 20px;
    font-family: "PT Serif", serif;
}
.modalidades p{
    text-align: justify;
    font-size: 14px;
    color: #272727;
}

.div-content img{
    max-height: 765px;
}

.content-imgen-inv{
    margin-top: 30px;
    width: 100%;
    
}

.content-footer{
    text-align: center;
}
.content-footer p{
    color: #272727;
    padding: 0 80px;
}
.content-footer h5{
    font-size: 16px;
    color: #151515;
    padding: 15px 140px;
}





/* Login user admin */


.main {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
}

.login-container img{
    width: 190px;
    padding-top: 30px;
}
.login-container{
    padding: 30px 25px!important;
    background-color: #151515;
    border-radius: 10px;
}


.main.side {
    background: url(./images/bk.png) no-repeat;
    background-size: 100% 102%;
}

.side img {
    width: 50%;
    max-width: 50%;
}

.login-container {
    max-width: 450px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    text-transform: uppercase;
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    font-family: "PT Serif", serif;
    font-weight: 600;
}

.separator {
    width: 150px;
    height: 4px;
    background-color: #CB2224;
    margin: 24px;
}

.welcome-message {
    text-align: center;
    font-size: 1.1em;
    line-height: 28px;
    margin-bottom: 30px;
    color: #696969;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.form-control {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
}

input,
button {
    border: none;
    outline: none;
    border-radius: 30px;
    font-size: 1.1em;
}

input {
    width: 100%;
    background: #e6e6e6;
    color: #333;
    letter-spacing: 0.5px;
    padding: 14px 64px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

input ~ i {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    transition: color   0.4s;
}

input:focus ~ i {
    color: #CB2224;
}

button.submit {
    color: #fff;
    padding: 14px 64px;
    margin: 32px auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    /* background-image: linear-gradient(to right, #8b33c5, #15a0e1); */
    background-color: var(--accent-btn);
    cursor: pointer;
    transition: opacity 0.4s;
}

button.submit:hover {
    opacity: 0.9;
}


.icon-edit{
    font-size: 25px;
    cursor: pointer;
}


.pd-0{
    padding: 0!important;
}

.pd-10{
    padding: 10px!important;
}
.pd-20{
    padding: 20px!important;
}

.mb-30{
    margin-bottom: 30px;
}

.mt-10{
    margin-top: 10px;
}
.mt-20{
    margin-top: 20px;
}


.camb_section-title h2{
    text-transform: none!important;
    font-weight: 500;
    margin-top: 20px;
}



.content-descripcion{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}



.content-text{
    width: 50%;
}

.content-img{
    width: 30%;
    max-height: 928px;
    position: relative;
}

.content-text p{
    padding: 0;
    margin-bottom: 30px;
    font-family: "PT Serif", serif;
}



.detalle h3{
    text-align: left;
    text-transform: none;
    font-family: "PT Serif", serif;
}

.div-content_edit{
    width: 100%;
    padding-left: 10px;
}
.display-flex{
    display: flex;
}

.width-article{
    width: 40%!important;
}

.colum-rever{
  
    flex-direction: column;
}
.row{
    width: 100%;
    padding: 20px 10px;
}

.section-casos{
   /* margin-top: 30px; */
   width: 100%;
   margin-right: 10px;
}

.casos{
    padding: 15px;
    /* border: 1px solid #ccc; */
    margin: 10px;
    margin-top: 0;
    width: 100%;
    height: 200px;
    text-align: justify;
    padding-top: 0;
}
.casos h3{
    text-align: left!important;
    font-size: 16px;
    margin-bottom: 10px;
}
.casos h4{
    font-size: 14px!important;
    font-weight: 600!important;
    text-transform: none;
}
.casos p{
    margin-bottom: 15px;
    /* font-size: 18px; */
    color: #272727;
    font-family: "PT Serif", serif;
}

.div-cont_article_estdio{
    display: flex;
    width: 100%;
    margin-bottom: 25px;
    border: 1px solid #ccc;
    padding: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.rol_div{
    margin: 10px 5px;
    padding: 10px;
    background-color: #F8F8F8;
}
.telf{
    font-size: 18px;
}


.section-banner{
    position: relative;
}

.position{
    position: absolute;
    right: 0;
    padding: 10px;
}

.icon-edit{
    color: #C93032;
}


.post-banner{
    position: absolute;
    top: 50px;
    left: 50px;
}

.icon-add{
    color: #2D983E;
}

.content-listModalidad{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.titlecont{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-pr{
    font-size: 20px;
    color: #C93032;
    cursor: pointer;
}


.blackg-color{
    background-color: #fff;
}
 

/* style Slider principal */
.prevPhoto {
    display: flex;
    justify-content: space-between;
    width: 300px;
    height: 200px;
    border: 1px solid #CCC;
    position: relative;
    cursor: pointer;
    background: url(../admin/images/fondo.avif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin: auto;
  }
  
  .prevPortada{
  width: 100%;
  min-width: 200px;
  background: none;
  }
  .prevPhoto label{
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  }
  .prevPhoto img{
  width: 100%;
  height: 100%;
  }
  .upimg, .notblock{
  display: none !important;
  }
  .errorArchivo{
  font-size: 16px;
  font-family: arial;
  color: #cc0000;
  text-align: center;
  font-weight: bold; 
  margin-top: 10px;
  }
  .delPhoto{
  color: #FFF;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background: red;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 10;
  }
  
  
  

/* ======================= Modal Login ==========================*/


.conter_Mlogin{
	position: fixed;
	background: rgba(0, 0, 0, 0.171);
	top: 0;
	z-index: 100;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0);
}



.wrapperModal{

    position: relative;

	width: 400px;
	height: auto;
	background: rgba(255,255,255,1);
	border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	box-shadow: 0 0 30px rgba(0, 0, 0, .5);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: height .5s ease;
	transform: scale(0);
	transition: transform .5s ease;
}

.conter_Mlogin.active_modalL{
	transform: scale(1);
}
.wrapperModal.active_modal{
	transform: scale(1);
}

.conter_Mlogin.closeML{
	transform: scale(0);
}


.wrapperModal.active{
	height: 560px;
}

.wrapperModal .form-box{
	width: 100%;
	padding: 40px;
}

.wrapperModal .icon_close{
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	background: #162938;
	font-size: 2rem;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom-left-radius: 20px;
	cursor: pointer;
	z-index: 1;
}

.wrapperModal .form-box.login{
	transition: transform .5s ease;
	transform: translateX(0);
}

.wrapperModal.active .form-box.login{
	transition: none;
	transform: translateX(-400px);
}

.wrapperModal .form-box.register{
	position: absolute;
	transition: none;
	transform: translateX(400px);
}

.wrapperModal.active .form-box.register{
	transition: transform .5s ease;
	transform: translateX(0);
}

.form-box h2{
	font-size: 2rem;
	color: #162938;
	text-align: center;
}

.input-box{
	position: relative;
	width: 100%;
	height: 40px;
	border-bottom: 2px solid #162938;
	margin: 30px 0;
}

.input-box label{
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	font-size: 1rem;
	color: #162938;
	font-weight: 500;
	pointer-events: none;
	transition: .5s;
}

.input-box .iconModel input:focus + label , .input-box .iconModel input:valid + label{
	transform: translateY(-160%);
		font-size: 0.8rem;
		color: var(--primario);
}

.input-box input{
	width: 100%;
	height: 38px;
	background: transparent;
	border: none;
	outline: none;
	font-size: 1rem;
	color: #162938;
	font-weight: 600;
	padding: 0 35px 0 5px;
}
.input-box-area .iconModel textarea{
	width: 100%;
	height: 150px;
	background: transparent;
	border: none;
	outline: none;
	font-size: 18px;
	color: #162938;
	font-weight: 500;
	padding: 0 35px 0 5px;
}
.input-box-area{
	border-bottom: 2px solid #162938;
    margin-bottom: 10px;
}

.input-box-area .iconModel label{
	font-weight: 600;
    font-size: 20px;
}

.input-box .icon{
	position: absolute;
	right: 8px;
	font-size: 1.2rem;
	color: #162938;
	line-height: 40px;
}

.size-modal-g{
    width: 60%;
}


.detalle .cat{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tex-sententia p{
    font-size: 16px;
    color: #272727;
    font-family: "PT Serif", serif;
}




.content_form-editorial{
    margin-top: 60px;
    background-color: #fff;
    padding: 15px;
}

.title-form{
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #DBDBDB;
}
.title-form h3{
    text-transform: none;
    margin-bottom: 10px;
    padding: 0;
}

.form_editorial label{
    font-weight: 600;
}
.form_editorial .row{
    flex-wrap: wrap;
}
.form_editorial h3{
    text-align: justify;
    text-transform: none;
}

.col-6{
    width: 47%;
    margin: 0 5px 15px;
    /* margin-bottom: 15px; */
}
.col-12{
    width: 100%;
    margin: 0 5px 15px;
    /* margin-bottom: 15px; */
}
.form_editorial input{
    border-radius: 0;
    margin-top: 10px;
    padding: 15px!important;
}

.select-input{
    width: 20%;
    padding: 10px;
    background-color: #DBDBDB;
    margin-top: 10px;
    font-size: 16px;
}
.select-input option{
    padding: 10px;
}

.btn-s{
    width: 20%;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    background-color: var(--accent-btn);
    color: #fff;
}


.vision-mision{
    display: flex;
}
.vision-mision img{
    width: 48%;
    max-width: 440px;
    margin-bottom: 20px;
}

.content-vision-mision{
    margin-right: 10px;
    width: 50%;
    padding: 10px;
}

.content-vision-mision p{
    margin-top: 20px;
    font-size: 14px;
    font-family: "PT Serif", serif;
    text-align: justify;
}

.text-vision-mision{
    padding-bottom: 40px;
}

.titlem h4{
    font-size: 18px;
}
.titlem i{
    color: #2D983E;
}

.widthimgN{
    max-height: 240px;
}

.post-img{
    position: relative;
    left: 35px;
    top: 5px;
}

.post-img1{
    position: relative;
    left: 5px;
    top: 40px;
}

.cont-pag p{

    text-align: justify;
}
.cont-pag img{
    width: 50%;
    margin: 20px;
    float: left;
    margin-top: 0;
}


.title-section h2 a {
    font-size: 22px;
    color: var(--primary-color);
}

.cont-par_corto{
    overflow: hidden;
    height: 50px;
    text-align: justify;
    text-overflow: ellipsis;
}

.cont-descrip-pagna{
    margin: 20px;
}

.hei-max{
    min-height: 60vh;
}

.w-rs{
    width: 100%!important;
}
.w-rs_div{
    width: 40%;
}

.casos_limit-heih{
    overflow: hidden;
    text-overflow: ellipsis;
}

.w-inv{
    width: 23.9%!important;
}
.w-100{
    width: 100%;
}

.btn{
    width: 100%;
    padding: 15px 20px;
    background-color: var(--accent-btn);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

.textArea textarea{
    width: 100%;
    background: #e6e6e6;
    height: 120px;
    margin-top: 10px;
    padding: 15px;
    font-size: 16px;
}
/* ===================Fin codigo modal ========================*/


@media (max-width: 1200px) {
    header nav ul{
        display: none;
    }
    .contact-btn{
        display: none;
    }
    .navbar{
        display: block;
    }
    .content-grid article{
        width: 48.60%;
    }
    footer {
        padding: 30px 60px;
    }

    .hamburger{
        position: absolute;
        top: 80px;
        right: 0;
        background-color: var(--primary-color);
        min-width: 60%;
        padding: 15px;
        height: 100vh;
    }
    .hamburger li{
        padding: 10px 0;
        margin-bottom: 5px;
        /* font-size: 16pxs; */
    }
    .bg-navMovil{
        width: 100%;
        height: 100vh;
        background-color: #930002;
    }
    .w-inv{
        width: 31.9%!important;
    }
}

@media (max-width: 1030px) {
    .form-contacto h3{
        font-size: 18px;
    }
    .info-contacto, h3{
        font-size: 18px;
        font-weight: 600;
    }
    .form-contacto {
        width: 50%;
    }
    .info-contacto {
        width: 50%;
    }
    hr {
        width: 85%;
    }
    .content-grid article{
        width: 47.99%;
    }
}


@media (max-width: 980px) {
    .navfooter {
        flex-direction: column;
        text-align: center;
    }
    footer {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    footer img {
        width: 170px;
    }
    .hamburger{
        min-width: 80%;
    }
    .promo-text{
        top: 65%;
    }
    
}

@media (max-width: 920px) {
    .content-grid article{
        width: 48%;
    }
   
    .div-content-main {
        flex-direction: column;
    }
    .content-section{
        width: 92%;
    }
    .section-banner{
        display: none;
    }
    .w-inv{
        width: 48%!important;
    }
    
}

@media (max-width: 860px) {
    .info-form{
        flex-direction: column;
    }
    .form-contacto {
        width: 100%;
        margin-top: 50px;
    }
    .info-contacto {
        width: 100%;
    }
    hr {
        width: 80%;
    }
    .encabezado-contacto p {
        width: 90%;
        text-align: center;
    }
    .vision-mision{
        flex-direction: column;
    }
    .content-vision-mision {
        width: 100%;
    }
    .vision-mision img{
        width: 100%;
    }

}

@media (max-width: 680px) {
    .info-form{
        padding: 0 50px;
    }

    .col-6{
        width: 47%;
    }
    .content_page{
        padding: 0 20px 50px;
    }
    .categoria_juridica .cat {
        width: 50%;
    }
    .content-descripcion{
        flex-direction: column-reverse;
    }

    .content-text{
        width: 100%;
    }
    .content-img{
        width: 50%;
    }
    .select-input{
        width: 50%;
    }
    .btn-s{
        width: 100%;
    }
    .promo-text{
        top: 75%;
    }
    .promo-text h2 {
        font-size: 28px;
    }
    .promo-text p {
        font-size: 16px;
    }

}
@media (max-width: 530px) {
    .content-grid article{
        width: 100%;
    }
    .display-flex{
        flex-direction: column-reverse;
    }
    .div-cont_article_estdio{
        flex-direction: column;
        width: 95%;
    }
    .width-article{
        width: 100%!important;
        margin-bottom: 25px;
    }
    .section-casos {
        width: 100%;
    }
    .casos{
        margin: 0;
        overflow: hidden;
    }
    .col-6{
        width: 100%;
    }
    .w-rs_div{
        width: 100%!important;
        margin-top: 15px;
    }
    .content-grid{
        margin: 0;
        margin-bottom: 25px;
    }
    .casos_limit-heih{
        margin-bottom: 10px;
    }
    .w-inv{
        width: 100%!important;
    }
    .div-content .modalidades{
        flex: 1 1 calc(100% - 20px);
    }
    .content-footer p{
        padding: 0;
    }
    .content-footer h5{
        padding: 0;
        padding-top: 20px;
    }

    .promo-text h2 {
        font-size: 18px;
    }
    .promo-text p {
        font-size: 14px;
    }
}
