.DocTilte{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	border-radius: 0px 0px 40% 0px;
	margin: auto;
	padding-top: 100px;
	padding-bottom: 100px;
	background: rgb(20,130,60);
	background: linear-gradient(142deg, rgba(50,103,138,1) 47%, rgba(30,83,160,1) 91%);
	color: #ffffff;
}

.DocTilte .title1{
	font-size: 42px;
	color: #ffffff;
	display: block;
	width: 80%;
	margin: auto;
	text-align: left;
	font-weight: 700;
}

.DocTilte .info{
	width:600px;
	display: block;
	margin: auto;
	text-align: left;
}

.DocTilte .info .title1{
	display: block;
	width: 100%;
	text-align: left;
}

.DocTilte .info p{
	display: block;
	width: 100%;
	font-size: 18px;
	text-align: left;
	color: rgb(220, 220,240);
	font-weight: 500;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

.DocTilte .info p b{
	color: #ffffff;
}

.DocTilte .image{
	width: 300px;
	margin: auto auto;
}

.DocTilte .image img{
	width: 100%;
}

.doc{
	width: 80%;
	display: block;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}

.doc .title2{
	display: block;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: 700;
	color: rgb(40, 40, 40);
	text-align: left;
}

.doc .subTitle1{
	display: block;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 20px;
	color: rgb(40, 40, 40);
	text-align: left;
}

.doc p{
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100%;
	font-size: 18px;
	color: rgb(40, 40, 40);
	text-align: justify;
}

.doc b{
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100%;
	font-size: 18px;
	color: #000000;
}

.doc table{
	display: block;
	width: 100%;
	border: 2px solid rgba(40, 40, 40, 1.0);
	border-radius: 16px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

    .doc table th,
    .doc table td {
      padding: 12px 15px;
      text-align: left;
       border-right: 2px solid rgba(40, 40, 40, 1.0);
       border-bottom: 2px solid rgba(40, 40, 40, 1.0);
    }

    /* Estilo para el encabezado */
    .doc table thead {
      background-color: rgba(0, 0, 0, 0);
      color: #000000;
    }

    /* Bordes y alternancia de colores en las filas */
    .doc table tbody tr {
      border-bottom: 2px solid rgba(40, 40, 40, 1.0);
    }

    .doc table tbody tr:nth-child(even) {
      background-color: #f9f9f9;
    }

    /* Efecto hover en las filas */
    .doc table tbody tr:hover {
      background-color: #f1f1f1;
    }



@media (max-width: 800px){
	.DocTilte{
		display: flex;
		flex-direction: column;
		border-radius: 0;
	}
	.DocTilte .info{
		width: 85%;
		margin: auto;
	}

	.DocTilte .image{
		width: 85%;
		margin: auto;
	}
}