@charset "utf-8";
/* CSS Document */
html{
	scroll-behavior: smooth;
}

/*sroll*/
body::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #f5f5f5;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #db5300;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid #f5f5f5;  /* creates padding around scroll thumb */
}
/*fin scroll*/

H1,H2,H3{
	margin: 0;
	padding: 0;
	font-family:Georgia, Constantia, "Lucida Bright", "DejaVu Serif", "serif";
}
.titulo1,.titulo2,.titulo3{
	margin: 20px 0;
	text-align: center;
	box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;
	display: flex;
	font-family: 'Montserrat-Regular', sans-serif;
	font-size: 17px;
}
main{
	width: 100vw;
	overflow-x: hidden;
}
/*inicio header*/
header{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	
	padding: 20px;
	box-sizing: border-box;
	
	background: white;
}
	.logo {
		width: 100%;
		max-width: 369px;
		height: 70px;
		overflow: hidden;
	}
	.logo img{
		width: 100%;
		min-width: 200px;
		margin-bottom: 25px;
		box-sizing: border-box;
	}
/*inicio menu*/
	.nav {
		text-align: center;
		height: 70px;
		line-height: 70px;
		width: 100%;
		max-width: 460px;
		z-index: 1000000000;
	}
	.menu {
		background: white;
	}
	.menu a {
		clear: right;
		text-decoration: none;
		color: black;
		margin: 0 15px;
		line-height: 70px;
		margin-block-start: 1em;
	}
	.menu a:hover{
		color: #db5300;
	}
	.item{
		position:relative;		
	}
	.item:before{
		content:"";
		display: block;
		width:0%;
		height:3px;
		background:#db5300;
		position:absolute;
		bottom:-3px;
		transition:all .5s;
	}
	.item:hover:before{
		width:100%;
	}
	.tres:before{
		left:50%;
	}
	.tres:hover:before{
		left:0%;
	}
	label {
		font-size: 26px;
		line-height: 70px;
		display: none;
		width: 100%;
		float: right;
	}
	label div{
		display: flex;
		justify-content:space-between;
		color: white;
		padding: 0 10px;
		/*border: 1px solid #db5300;*/
		background: #db5300;
	}
	#toggle {
		display: none;
	}
	#toggle:checked ~ .menu {
			display: block;
		}
	#toggle:checked ~ label div {
			color: #db5300;
			border: 1px solid #db5300;
			background: white;
		} 

	@media only screen and (max-width: 430px) {
		label {
			display: block;
			cursor: pointer;
		}
		.menu {
			text-align: center;
			width: 100%;
			display: none;	
		}
		.menu a {
			display: block;
			border-bottom: 1px solid #EAEAEB;
			margin: 0;
		}
		
	}
	@media only screen and (max-width: 790px) {
		header{
			justify-content:center;
		}
	}

/*fin menu*/
/*fin header*/
.banner{
	width: 100%;
	height: auto;
	position:relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 200px;
	overflow: hidden;
	box-sizing:content-box;
	margin-bottom: 40px;
}
.banner:before{
		content:"";
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:5px;
		background:linear-gradient(to bottom, black, transparent);
		opacity: 0.1;
		z-index:100;
	}

.home{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	text-align: justify;
	margin-bottom: 20px;
}
	.marger{
		margin-top: 50px;
		margin-bottom: 100px;
	}
	.homeFondo{
		width: 100%;
		color: white;
		padding-top: 20px;
		padding-bottom: 40px;
		margin-bottom: 50px;
		position: relative;
		/*overflow: hidden;*/
	}
	.homeFondo:before{
		content: "";
		width: 300%;
		height: 100%;
		background: #db5300;
		position:absolute;
		top:0;
		left: -100%;
		z-index: -1;
	}
	.enfoques{
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.enfoque{
		width: 100%;
		max-width: 350px;
		min-width: 200px;
		text-align: center;
		margin: auto;
		padding: 15px;
		box-sizing: border-box;
	}
	.enfoque img{
		width: 100%;
		max-width: 70px;
		height: auto;
		filter: brightness(0) invert(1);
	}
	.enfoque h3{
		color: white;
		margin-top: 10px;
	}
	.enfoque p{
		text-align: justify;
		color: white;
	}

.aboutUs{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	text-align: justify;
	margin-bottom: 20px;
}
	.aboutUs h1{
		margin-bottom: 30px;
	}
	.especialidades{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		box-sizing: border-box;
		color: #db5300;
		margin-bottom: 50px;
	}
	.especialidades i{
		font-size: 20px
	}
	.gris{
		width: 100%;
		padding: 20px 20px 0 20px;
		background: #f5f5f5;
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
	}

/*inicio cards*/
	.container{
		width: 100%;
		max-width: 1200px;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: auto;
		top:-80px;
	}
	.container .carduno{
		position: relative;
		margin: auto;
	}
	.container .carduno .face{
		width: 250px;
		height: 300px;
		transition: .5s;
	}
	.container .carduno .face.face1{
		position: relative;
		background: white;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 1;
		transform: translateY(200px);
	}
	.container .carduno:hover .face.face1{
		transform: translateY(0) rotate(-5deg);
		background: #db5300;
		color: white;
	}
	.container .carduno .face.face1 .content{
		/*opacity: 1;
		transition: .5s;*/
		display: flex;
		flex-direction: column;
		align-items: center;	
	}
	.container .carduno .face.face1 .content img{
		width: 100%;
		max-width: 150px;
		height: auto;
		margin-bottom: 20px;
	}
	.container .carduno .face.face1 .content h3{
		margin: 0;
		padding: 0;
		color: #db5300;
		text-align: center;
		font-size: 1.5em;
	}
	.container .carduno:hover .face.face1 .content h3{
		/*opacity: 1;*/
		color: white;
	}
	.container .carduno .face.face2{
		position: relative;
		background: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px;
		box-sizing: border-box;
		box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
		transform: translateY(-100px);
	}
	.container .carduno:hover .face.face2{
		transform: translateY(0);
		transform: rotate(5deg);
	}
	.container .carduno .face.face2 .content p{
		margin: 0;
		padding: 0;
	}
	.container .carduno .face.face2 .content a{
		margin: 15px 0 0;
		display: inline-block;
		text-decoration: none;
		font-weight: 900;
		color: #db5300;
		padding: 5px;
		border: 1px solid #db5300;
	}
	.container .carduno .face.face2 .content a:hover{
		background: #db5300;
		color: #fff;
	}
/*fin cards*/

.servicio{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	text-align: justify;
}
	.servicio h1{
		margin:70px 0 40px 0;
	}
	.servicio h2{
		margin:60px 0 40px 0;
	}
	.servicio i{
		background: #1eff05 ;
		padding: 5px 7px;
		transform: skew( -15deg);
	}

/*inicio acordion*/
	
 h5 {
  margin-top: 0;
  margin-bottom: 0.5rem; 
}

.mb-0{
	font-size: 1em;
	margin-bottom: 0 !important;
	transition: .3s !important;
	text-align: left;
}
.mb-0 img{
	width: 30px;
	height: auto;
	float: left;
	margin-right: 10px;
	/*transform: scale(3)*/;
}
.mb-0 a,.card-body a {
	color: #db5300;
	text-decoration: none;
	background-color: transparent;
}
.card-body a:hover{
  color: #0056b3;
  text-decoration: underline;
}
.mb-0:hover {
	transform: translateX(10px);
}
.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #f5f5f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

@media (min-width: 576px) {
  .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;

    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}



.collapse:not(.show) {
  display: none;
}

/*fin acordion*/

.contacto{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	text-align: justify;
}
	.contacto h1{
		margin:80px 0 40px 0;
	}
.formulario{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
	box-sizing: border-box;
	margin-top: 50px;
	margin-bottom: 100px;
}
.form-group {
    margin-bottom: 15px;
}
.form-control {
    display: block;
    width: 100%;
    padding: 12px;
	box-sizing: border-box;
    color: black;
    background-color: white;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
}
.botones{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
}
.boton{
	border: 1px solid #db5300;
	border-radius: 4px;
	background: none;
	width: 290px;
	height: 50px;
	font-size: 17px;
	color: #db5300;  
	cursor: pointer;  
	margin-bottom: 20px;  
	transition: 0.8s;
	position: relative;
	overflow: hidden;
	z-index: 3;
}
.boton:hover{
	color: white; 
}
.boton:before{
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 0%;
	background: #db5300;
	z-index: -1;
	transition: 0.8s;
	bottom: 0;
	border-radius: 50% 50% 0 0;
}
.boton:hover:before{
	height: 180%;
}
.oficinas{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
}
.foto{
	display: flex;
	margin: 0 auto;
}
.foto img{
	width: 100%;
	min-width: 250px;
	max-width: 400px;
	height: auto;
}
.direccion{
	width: 100%;
	max-width: 520px;
	display: flex;
	flex-direction:column;
	justify-content: space-between;
	margin: 0 auto;
}
.mapa{
	width: 100%;
	height: 200px;
}

footer{
	width: 100%;	
	background: #db5300;
}
	.datosContacto{
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 27px 10px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	.info{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		/*transform: scale(.85);*/
	}
	.info h2{
		font-size: 22px;
	}
	.infoDos{
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;
		margin-left: 10px;
		padding-left: 10px;	
		border-left: 1px solid black;
		font-size: 14px;
	}
	.infoDos span{
		margin-bottom: 3px;
	}

	.copyright{
		font-size: 12px;
		text-align: center;
		padding: 15px 0;
		background: #A54307;
	}
	.copyright a{
		text-decoration: none;
		color: black;
	}

/*whatsapp*/
	.action{
		position: fixed;
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		background: green;
		border: 1px solid white;
		border-radius: 50%;
		box-shadow: 0 5px 5px rgba(0,0,0,.1);
		z-index: 1000;
	}
	.iconow{
		cursor: pointer;
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		color: white;
		font-size: 2em;
		transition: 0.3s ease-in-out;
	}
	.action.active .iconow{
		color: green;
	}
	.action.active{
		border: 1px solid green;
		background: white;
	}
	.cajaw{
		position: absolute;
		bottom: 55px;
		min-width: 340px;
		right: -10px;
		border-radius: 20px;
		overflow:hidden;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
	}
	.action.active .cajaw{
		bottom: 65px;
		opacity: 1;
		visibility: visible;
		transition: 0.3s;
	}
	.titulow{
		background: #075e55;
		padding: 20px;
		display: flex;
		align-items: center;
		color: white;
		font-family: tahoma;
		font-size: 20px;
	}
	.titulow p{
		margin: 0 0 0 20px;
	}
	.titulow p:nth-child(2){
		font-size: 15px;
	}
	.cuerpow{
		background: url("../img/fondow.jpg");
		background-size: cover;
		padding: 20px;
	
	}
	.piew{
		display: flex;
		background: #d3d3d5;
		padding: 20px;
		justify-content: center;
	}
	.btnchatw{
		font-family: tahoma;
		font-size: 20px;
		color: white;
		background: #47b552;
		width: 300px;
		height: 50px;
		border-radius: 50px;
		text-align: center;
		line-height:2.5;
	}
	.avatarw{
		width: 55px;
		height: 55px;
		background: url("../img/avatar.jpg");
		background-size: cover;
		border-radius: 50px;
	}
	.avatarw:before{
		content: "";
		background: #54d500;
		width: 10px;
		height: 10px;
		display: block;
		position: relative;
		border-radius: 50%;
		bottom: -80%;
		right: -80%;
	}

		
	/*burbuja de texto*/
	
	.comentariosw .comentariow{
			max-width: 200px;
			margin-bottom: 40px;
		}

		.comentariosw .comentariow p{
			margin: 0 0 10px 0;
			font-family: tahoma;
			font-size: 18px;
		}
	.comentariosw .comentariow p:nth-child(1){
	color: #0C78C8;
		}

		.burbujaw{
			position: relative;
			background-color: #fff;
			padding: 10px 20px 10px 20px;
			color: #3B3B3B;
			border-radius: 0px 10px 10px 10px;
			margin-left: 10px;
		}

		.burbujaw:after{
			content: "";
			display: block;
			position: absolute;
			top: -7px;
			margin-left: -28px;
			width: 0;
			height: 0;
			border-top: 15px solid transparent;
			border-bottom: 15px solid transparent;
			border-right: 15px solid #fff;
			transform: rotate(-90deg);
		}

/*fin whatsapp*/


