@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	/*padding: 0;*/
	margin: 0;
	box-sizing: border-box;
}
body{
	min-height: 100vh;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: .05rem;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: .2rem;
	text-align: center;
}

.section-title span {
	color: #75F9F7;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid #75F9F7;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	margin-top: 30px;
	transition: .3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: #34495E ;
	background-color: #75F9F7 ;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	/*color: crimson;*/
	color: #75F9F7 ;
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color:#124f90;
	transition: .3s ease background-color;
}

#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color:#124f90;
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: .5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: .2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color:#124f90;
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: .3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: #75F9F7;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: .3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* End Header section */

/* Footer */
#footer {
	background-image: linear-gradient(60deg, #142850 0%, #485563 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	text-align: center;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: .1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: .3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.3rem;
	text-align: center;
}
#footer a{
	color: white;
	text-decoration-line: underline;
}

#footer h1{
	font-size: 2rem;
}

#footer a:hover{
	color: turquoise;
}
/* End Footer */

/*-----*/
  .select-css {
	  text-align: center;
	  align-content: center;
	display: block;
	font-size: 16px;
	font-family: 'Arial', sans-serif;
	font-weight: 400;
	color: #444;
	line-height: 1.3;
	padding: .4em 1.4em .3em .8em;
	width: 400px;
	max-width: 100%; 
	box-sizing: border-box;
	margin: auto;
	border: 1px solid #aaa;
	box-shadow: 0 1px 0 1px rgba(0,0,0,.03);
	border-radius: .3em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
	  linear-gradient(to bottom, #ffffff 0%,#f7f7f7 100%);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
   }
   .select-css::-ms-expand {
	display: none;
   }
   .select-css:hover {
	border-color: #888;
   }
   .select-css:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222; 
	outline: none;
   }
   .select-css option {
	font-weight:normal;
   }
  /*-----------*/


.co-nuestros-servicios h1{
	text-align: center;
	font-size: 60px;
}

#control_cat{
/*	background: #142850;*/
	width: 100%;
	
}

.contenedorsearchin{
	/*display: flex;*/
	/*height: 100vh;*/
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	background: #00a8cc;
	flex-direction: column;
  }
/*INPUT BUSCAR*/
.tit-control{
	color: #0c7b93;
	padding-bottom: 2em;
}
.box{
	position: relative;
/*	top: 50%;
	left: 50%;*/
	/*transform:translate(-50%,-50%);*/
	padding-bottom: 4em;
	width: 100%;
/*	background: purple;*/
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	
}
.box h1{
	margin: 0 0 10px;
	padding: 0;
/*	color: #00a8cc;*/
	font-size: 24px; 
}
.box input{
	
	display: inline-block;
	font-size: 20px;
	box-sizing: border-box;
	transition: .5s;
}
input[type="text"]{
	background: #CFD1F0;
	width: 50%;
	height: 50px;
	border: none;
	outline: none;
	padding: 0 25px;
	border-radius: 25px 0 0 25px;
	
}
input[type="submit"]{
	position: relative;
	left: -5px;
	border-radius: 0 25px 25px 0;
	width: 20%;
	height: 50px;
	border: none;
	outline: none;
	cursor: pointer;
	background: #00a8cc;
	color: #fff;
}


#main-contenedortabla{
	position: relative;
	width: 100%;
/*	background: orange;*/
	margin-bottom: 15em;
/*max-width: 700px;*/
}
.table-pro{
    background-color: white;
    text-align: left;
    border-collapse: collapse;
  	width: 100%;
    margin: 0;
    padding: 0;
    table-layout: fixed;
}
.table-pro caption{
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 8px 0px;
}
.table-pro tr{
    background-color: #f8f8f8;
}
th, td{
    font-size: 16px;
    padding: 8px;
    text-align: center;
}
  .table-pro thead,th{
      text-transform: uppercase;
      background-color: #ddd;
  }
  .table-pro tbody tr:hover{
      background-color: rgb(0, 0, 0,0.2);
  }
  .table-pro tbody td:hover
  {
      background-color: rgb(0, 0, 0,0.3);
  }

  .dsoat{
	  align-content: center;
	  align-items: center;
	  text-align: center;
	  justify-content: space-around;
	  /*justify-content: space-around;*/

	  /*float: left;*/
	  /*display: flex;
	  flex-direction: column;*/
  }

  .fsoat{
	  display: flex;
	  flex-direction: row;
	  align-content: center;
	  align-items: center;
	  text-align: center;
	  justify-content: space-around;
	  padding-bottom: 10px;
	  /*margin: 50px;*/
  }

  .csoat{
	  display: flex;
	  flex-direction: column;
	  align-content: center;
	  align-items: center;
	  /*margin-left: 50px;*/
	  /*padding: 50px;*/
	  justify-content: space-around;
	  
  }

  .csoat p1{
	  font-size: 2.5rem;
  }

  .csoat p1a{
	font-size: 3rem;
	color: #124497;
  }
  
  .csoat p{
	font-size: 3rem;
	color: red;
  }

  .csoat h2{
	  color: gray;
  }

  .csoat p2{
	/*margin-bottom: 10px;*/
	color: #124497;
	font-size: 1.8rem;
  }

  .btnimprimir{
	  /*background-color: #00a8cc;
	  border-radius: 20px;
	  color: white;
	  font-size: 2rem;*/
	  display: flex;
	  line-height: 24px;
	  align-items: center;
	align-content: center;
	  
	background-color: rgb(18, 79, 144);
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	/*display: inline-block;*/
	font-size: 16px;
	border-radius: 20px;
	text-align: center;
	cursor: pointer;
  }

  .btnimprimir img{
	width: 100%;
	height: 100%;
	cursor: pointer;
	padding-right: 5px;
	/*text-align: left;*/
  }

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		/*color: crimson;*/
		color: #0c7b93 ;
		font-weight: 500;
	}
}
/* End Keyframes */



/*
PADRE:
-MENU   --- IZQUIERDA
-SECTION --- DERECHA
-----------------------------
FOOTER
*/
#fondo{
	/*min-height: 800px;*/
	min-height: 100vh;
}
.fondo{
	display: flex;
	flex-direction: row;
	flex: auto auto auto;
	/*min-height: 100vh;*/
	/*100 % del viewport*/
/*	min-height: 800px;*/
min-height: 100vh;
	
}


.co-menu{
	position: flex;
	background: rgba(0,0,0,0.5);
	/*width: 100%;*/
	height: 100vh;
	top: 20; left: 0;
	transition: all 500ms ease;
	width: 100%;
	height: 100%;
	/*opacity: 0;
	transform: translateX(-100%);*/
	/*display: none;*/
}


.list-menu{
	width: 100%;
	/*max-width: 250px;*/
	background: #1c1c1c;
	height: 100vh;
	position: relative;
	transition: all 500ms ease;
	display: none;
	height: 100%;
}

.list-menu nav{
	transform: translateY(20%);
	width: 100%;
	
}

.list-menu nav a{
	display: block;
	text-decoration: none;
	padding: 20px;
	color: #c7c7c7;
	border-left: 5px solid transparent;
	transition: all 400ms ease;
	font-size: 1.8rem;
}

.list-menu nav a:hover{
	border-left: 5px solid #c7c7c7;
	background: #1f1f1f;
}

/*  lista menor*/


.list-menu2{
	width: 100%;
	
	max-width: 70px;
	background: #1c1c1c;
	height: 100vh;
	position: relative;
	transition: all 500ms ease;
	display: block;
	/*min-height: 800px;*/
	height: 100%;
}

.list-menu2 nav{
	transform: translateY(25%);
}

.list-menu2 nav a{
	display: flex;
	align-content: center;
	align-items: center;
	flex-direction: column;

	text-decoration: none;
	padding: 4px;
	width: 100%;
	border-left: 5px solid transparent;
	transition: all 400ms ease;
	font-size: 1.8rem;
	word-wrap: normal;
}
.list-menu2 nav a p{
	color: white;
	font-size: 0.4rem;
	word-wrap: normal;
}


.list-menu2 nav a:hover{
	border-left: 5px solid #c7c7c7;
	background: #1f1f1f;
}

/* editadooo

*/
#lista{
	width: 10%;
}
.co-nuestros-servicios{

	box-sizing: border-box;

	margin: 10% auto;
	/*margin-top: 10%;
	margin-right: 10px auto;*/
	padding: 0 20px;
	/*justify-content: flex-start;*/
	justify-content: center;
	width: 100%;


	/*margin-top: 10%;
	margin-right: 10px auto;*/
	/*justify-content: flex-start;*/
	
	/*
	padding: 0 20px;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: red;*/
}
#siniestros{
	width: 100%;
	box-sizing: border-box;
	/*background: #00a8cc;*/
}
#siniestros ul{
	padding: 0;
	/*background: #00a8cc;*/
}

#tecnica{
	width: 100%;
	box-sizing: border-box;
}

#servicios{
	width: 100%;
	box-sizing: border-box;
}

#muertos{
	width: 100%;
	box-sizing: border-box;
}

#resultado{
	width: 100%;
	box-sizing: border-box;
}

#aporte{
	width: 100%;
	box-sizing: border-box;
}

.co-nuestros-servicios2{
	box-sizing: border-box;

	margin: 10% auto;
	/*margin-top: 10%;
	margin-right: 10px auto;*/
	padding: 0 20px;
	/*justify-content: flex-start;*/
	justify-content: center;
	width: 100%;
}


/*
.fondo{
	display: flex;
	background: #0000;
}*/

/* --------------- Media Query For Tablet ---------------------*/

@media screen and (max-width: 282px){

	.list-menu2 nav a:hover{
		border-left: 2px solid #c7c7c7;
		background: #1f1f1f;
	}

	.co-nuestros-servicios{
		padding-top: 30%;
	}

	.tit-control{
		color: #0c7b93;
		padding-bottom: 1em;
	}
	.box{
		
		padding-bottom: 2em;
		width: 100%;
	/*	background: purple;*/
		display: flex;
		flex-direction: column;
		align-content: center;
		align-items: center;
		
	}
	.box h1{
		margin: 0 0 10px;
		padding: 0;
		color: #00a8cc;
		font-size: 10px; 
	}
	.box input{
		
		display: inline-block;
		font-size: 20px;
		box-sizing: border-box;
		transition: .5s;
	}
	input[type="text"]{
		
		width: 70%;
		height: 20px;
		
		padding: 0 25px;
		border-radius: 25px 0 0 25px;
		font-size: 1.2rem;
	}
	input[type="submit"]{
		position: relative;
		left: -5px;
		border-radius: 0 25px 25px 0;
		width: 28%;
		height: 20px;
		border: none;
		outline: none;
		cursor: pointer;
		background: #00a8cc;
		color: #fff;
		font-size: 1.2rem;
	}
	select {
		margin-bottom: 10px;
		color: #142850;
		background-color: #0010f148;
	}

	.table-pro{
		min-width: 10px;
	}
	.table-pro caption{
		font-size: 12px;
	}
	.table-pro thead{
		display: none;
	}
	.table-pro tr{
		margin-bottom: 8px;
		border-bottom: 4px solid #ddd;
		display: block;
	}
	.table-pro th, .table-pro td{
		font-size: 6px;
	}
	.table-pro td{
		display: block;
		border-bottom: 1px solid #ddd;
		text-align: right;
	}
	.table-pro  td:last-child{
		border-bottom: 0px;
	}
	.table-pro td:before{
		content: attr(data-label);
		font-weight: bold;
		text-transform: uppercase;
		float: left;
	}
	.co-nuestros-servicios h1 {
		text-align: center;
		font-size: 20px;
	}


	.co-nuestros-servicios2{
		box-sizing: border-box;
		
		/*margin-top: 10%;
		margin-right: 10px auto;*/
		padding-top: 40%;
		/*justify-content: flex-start;*/
	
	}
	.co-nuestros-servicios2 p{
		font-size: 0.6rem;
	
	}
	.co-nuestros-servicios2 ul{

		text-decoration: none;
		list-style: none;
	
	}

	.dsoat{
		display: block;
		/*flex-direction: column;*/
		/*float: left;*/
		/*margin: auto;*/
		text-align: center;
		
	}

	.fsoat{
		display: block;
		
		/*flex-direction: column;*/
		text-align: center;
		align-content: center;
		align-items: center;
		/*width: 100%;*/
		/*border-collapse: collapse;*/
		/*padding: 0;*/
		/*margin: auto;*/
		
		/*background-color: red;*/
		/*position: relative;*/
		/*margin: 50px;*/
	}

	.csoat{
		display: block;
		/*flex-direction: column;
		float: left;*/
		/*margin-left: auto;*/
		/*margin: auto;*/
		text-align: center;
		padding-bottom: 10px;
		/*background-color: blue;*/
		
	}

	.csoat p1{
		font-size: 2rem;
	}
  
	.csoat p1a{
	  font-size: 2rem;
	  color: blue;
	}
  
	.csoat h2{
		color: gray;
	}
  
	.csoat p2{
	  /*margin-bottom: 10px;*/
	  color: navy;
	  font-size: 1.8rem;
	}

	


}
/*
@media screen and (max-width: 768px){
	.co-nuestros-servicios h1{
		font-size: 36px;
		margin-top: 50px;
	}
	
	.table-pro{
		min-width: 400px;
	}
	.table-pro caption{
		font-size: 22px;
	}
	.table-pro thead{
		display: none;
	}
	.table-pro tr{
		margin-bottom: 8px;
		border-bottom: 4px solid #ddd;
		display: block;
	}
	.table-pro th, .table-pro td{
		font-size: 12px;
	}
	.table-pro td{
		display: block;
		border-bottom: 1px solid #ddd;
		text-align: right;
	}
	.table-pro  td:last-child{
		border-bottom: 0px;
	}
	.table-pro td:before{
		content: attr(data-label);
		font-weight: bold;
		text-transform: uppercase;
		float: left;
	}
	
}*/
@media only screen and (min-width: 283px) {
	#lista{
		width: 18%;
	}
	.co-menu{
		width: 100%;
		/*background: chartreuse;*/
	}
	
	
	.list-menu2{
		width: 100%;
		/*background: chocolate;*/
		min-width: 100%;
	}


.list-menu2 nav{
	transform: translateY(0%);
	padding-top: 120%;
}

.list-menu2 nav a{
	padding: 9px;
	
}
.list-menu2 nav a p{
	color: white;
	font-size: 0.7rem;
	word-wrap: normal;
}



	.co-nuestros-servicios{
		padding-top: 30%;
	}
	.co-nuestros-servicios h1 {
		text-align: center;
		font-size: 20px;
	}
	.box{
		
		padding-bottom: 2em;
		width: 100%;
	/*	background: purple;*/
		display: flex;
		flex-direction: column;
		align-content: center;
		align-items: center;
		
	}
	.box h1{
		margin: 0 0 10px;
		padding: 0;
		color: #00a8cc;
		font-size: 1.8rem; 
	}
	.box input{
		
		display: inline-block;
		font-size: 20px;
		box-sizing: border-box;
		transition: .5s;
	}
	input[type="text"]{
		
		width: 44%;
		height: 20px;
		padding: 0 25px;
		border-radius: 25px 0 0 25px;
		font-size: 1rem;
	}
	input[type="submit"]{
		position: relative;
		left: -5px;
		border-radius: 0 25px 25px 0;
		width: 22%;
		height: 20px;
		border: none;
		outline: none;
		cursor: pointer;
		background: #00a8cc;
		color: #fff;
		font-size: 1.1rem;
	}


	.table-pro{
		min-width: 10px;
	}
	.table-pro caption{
		font-size: 1.2rem;
	}
	.table-pro thead{
		display: none;
	}
	.table-pro tr{
		margin-bottom: 8px;
		border-bottom: 4px solid #ddd;
		display: block;
	}
	.table-pro th, .table-pro td{
		font-size: 0.7rem;
	}
	.table-pro td{
		display: block;
		border-bottom: 1px solid #ddd;
		text-align: right;
	}
	.table-pro  td:last-child{
		border-bottom: 0px;
	}
	.table-pro td:before{
		content: attr(data-label);
		font-weight: bold;
		text-transform: uppercase;
		float: left;
	}

	.dsoat{
		display: block;
		/*flex-direction: column;*/
		/*float: left;*/
		/*margin: auto;*/
		text-align: center;
		/*background-color: yellow;*/
	}

	.fsoat{
		display: block;
		
		/*flex-direction: column;*/
		text-align: center;
		align-content: center;
		align-items: center;
		/*width: 100%;*/
		/*border-collapse: collapse;*/
		/*padding: 0;*/
		/*margin: auto;*/
		
		/*background-color: red;*/
		/*position: relative;*/
		/*margin: 50px;*/
	}

	.csoat{
		display: block;
		/*flex-direction: column;
		float: left;*/
		/*margin-left: auto;*/
		/*margin: auto;*/
		text-align: center;
		padding-bottom: 10px;
		/*background-color: blue;*/
		
	}

	csoat p1{
		font-size: 2rem;
	}
  
	.csoat p1a{
	  font-size: 2rem;
	  color: blue;
	}
  
	.csoat h2{
		color: gray;
	}
  
	.csoat p2{
	  /*margin-bottom: 10px;*/
	  color: navy;
	  font-size: 1.8rem;
	}


}
@media only screen and (min-width: 400px) {
	.list-menu2 nav{
		transform: translateY(0%);
		padding-top: 100%;
	}
	
	.list-menu2 nav a p{
		color: white;
		font-size: 1.2rem;
		word-wrap: normal;
	}
	.list-menu2 nav a{
		padding: 15px;
	}

	
	.table-pro caption{
		font-size: 18px;
	}
	


}
@media only screen and (min-width: 480px) {
/*	.list-menu2{
display: none;
	}
	.list-menu{
display: block;
	}
}*/
	
.list-menu2{
	width: 100%;
/*	background: chocolate;*/
	min-width: 100%;
	max-height: 100%;
}


.list-menu2 nav{
/*transform: translateY(12%);*/
transform: translateY(0%);
max-height: 100vh;
padding-top: 100%;
}

.list-menu2 nav a{
padding: 12px;

}

	.list-menu2 nav a p{
		color: white;
		font-size: 1.2rem;
		word-wrap: normal;
	}



}
@media only screen and (min-width: 650px) {
		
.list-menu2{
	display: none;
}
.list-menu{
	display: block;
}

.dsoat{
	align-content: center;
	align-items: center;
	text-align: center;
	justify-content: space-around;
	/*justify-content: space-around;*/

	/*float: left;*/
	/*display: flex;
	flex-direction: column;*/
}

.fsoat{
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	text-align: center;
	justify-content: space-around;
	padding-bottom: 10px;
	/*margin: 50px;*/
}

.csoat{
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	/*margin-left: 50px;*/
	/*padding: 50px;*/
	justify-content: space-around;
	
}

.csoat p1{
	font-size: 2rem;
}

.csoat p1a{
  font-size: 2rem;
  color: blue;
}

.csoat h2{
	color: gray;
}

.csoat p2{
  /*margin-bottom: 10px;*/
  color: navy;
  font-size: 1.8rem;
}
}

@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	
	h1.section-title {
		font-size: 6rem;
	}

	h1.section-title2 {
		font-size: 3rem;
	}

	h2.section-title5{
		font-size: 2rem;
	}
	h1.section-title3 {
		font-size: 2.5rem;
	}
	

	.co-nuestros-servicios{
		padding-top: 30%;
	}

	.tit-control{
		color: #0c7b93;
		padding-bottom: 1em;
	}

	
	.box input{
		
		display: inline-block;
		font-size: 40px;
		box-sizing: border-box;
		transition: .5s;
	}
	input[type="text"]{
	
		width: 40%;
		height: 30px;
	
		padding: 0 25px;
		border-radius: 25px 0 0 25px;
		font-size: 1.8rem;
	}
	input[type="submit"]{
		position: relative;
		left: -5px;
		border-radius: 0 25px 25px 0;
		width: 28%;
		height: 30px;
		border: none;
		outline: none;
		cursor: pointer;
		background: #00a8cc;
		color: #fff;
		font-size: 1.8rem;
	}



	.table-pro caption{
		font-size: 20px;
	}
	.table-pro thead{
		display: none;
	}

	.table-pro th, .table-pro td{
		font-size: 15px;
	}

	

	.co-nuestros-servicios h1 {
		text-align: center;
		font-size: 40px;
	}
	.box h1{
		font-size: 25px;
	}





	/* Services Section */
	#services .service-bottom .service-item {
		flex-basis: 45%;
		margin: 2.5%;
	}

	/* End Services Section */


	#lista .co-menu{
		opacity: 1;/*opacidad 100%*/
	/*	opacity: 0.4;/*opacidad 40%*/
	/*visibility: hidden;*/
	/*transform: translateX(0%);*/
	display: block;
	width: 100%;
	
	}

	#lista .co-menu .list-menu{
		display: block;
	}

	#lista .co-menu .list-menu2{
		display: none;
	}

	
	
	

	#tm:checked~ #lista{
		background: rgba(255, 87, 51);
		/*
		opacity: 1;
		visibility: visible;
		display: block;
		transform: translateX(0%);*/
		/*transform: translateX(-100%);*/
		
	}
	.tm:checked~ #lista{
		background-color: rgba(255, 87, 51);
		/*
		opacity: 1;
		visibility: visible;
		display: block;
		transform: translateX(0%);*/
		/*transform: translateX(-100%);*/
		
	}


	
}


/* Media Query For Desktop */

@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */
	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
	
	
	.table-pro{
		background-color: white;
		text-align: left;
		border-collapse: collapse;
		  width: 100%;
		margin: 0;
		padding: 0;
		table-layout: fixed;
	}
	.table-pro caption{
		font-size: 28px;
		text-transform: uppercase;
		font-weight: bold;
		margin: 8px 0px;
	}
	.table-pro tr{
		background-color: #f8f8f8;
	}
	th, td{
		font-size: 16px;
		padding: 8px;
		text-align: center;
	}
	  .table-pro thead,th{
		  text-transform: uppercase;
		  background-color: #ddd;
	  }
	  .table-pro tbody tr:hover{
		  background-color: rgb(0, 0, 0,0.2);
	  }
	  .table-pro tbody td:hover
	  {
		  background-color: rgb(0, 0, 0,0.3);
	  }






	.table-pro caption{
		font-size: 30px;
	}
	.table-pro thead{
		display: table-row;
	}
	.table-pro tr{
		
		display: contents;
	}
	.table-pro th, .table-pro td{
		font-size: 18px;
	}
	.table-pro td{
		display: table-cell;
		border-bottom: 1px solid #ddd;
		text-align: center;
	}
	.table-pro  td:last-child{
		border-bottom: 0px;
	}
	.table-pro td:before{
		display: none;
		content: attr(data-label);
		font-weight: bold;
		text-transform: uppercase;
		float: left;
	}
	.co-nuestros-servicios h1 {
		text-align: center;
		font-size: 30px;
	}
	.co-nuestros-servicios{
		padding: 12%;
	}
	.co-nuestros-servicios .tit-control {
		font-size: 50px;
}
.box input{

	font-size: 25px;

}
input[type="text"]{

	width: 55%;
	height: 50px;
	
	padding: 0 25px;
	border-radius: 25px 0 0 25px;
	
}
input[type="submit"]{
	position: relative;
	left: -5px;
	border-radius: 0 25px 25px 0;
	width: 28%;
	height: 50px;
	border: none;
	outline: none;
	cursor: pointer;
	background: #00a8cc;
	color: #fff;
}

.dsoat{
	align-content: center;
	align-items: center;
	text-align: center;
	justify-content: space-around;
	/*justify-content: space-around;*/

	/*float: left;*/
	/*display: flex;
	flex-direction: column;*/
}

.fsoat{
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	text-align: center;
	justify-content: space-around;
	padding-bottom: 10px;
	/*margin: 50px;*/
}

.csoat{
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	/*margin-left: 50px;*/
	/*padding: 50px;*/
	justify-content: space-around;
	
}

.csoat p1{
	font-size: 2.5rem;
}

.csoat p1a{
  font-size: 3rem;
  color: blue;
}

.csoat h2{
	color: gray;
}

.csoat p2{
  /*margin-bottom: 10px;*/
  color: navy;
  font-size: 1.8rem;
}


}
/* End  Media Query For Desktop */