/****************** SECCION BANNER | HERO ************************/
#banner-hero{
	position: relative;
	width: 100%;
	border-radius: 6px;
	margin-bottom: 60px;
}
.contenido-hero > img{
	width: 100%;
	background-size: cover;
	background-position: bottom;
} 
#banner-hero:before{
	content: '';
	background: rgba(77,77,92,0.6);
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	z-index: 1;
}
.contenido-hero{
	position: relative;
	color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.contenido-hero h3 span{
	font-weight: 600;
	position: absolute;
	z-index: 2;
	top: 35%;
	text-transform: uppercase;
	font-size: 43px;
	padding: 10px;
	color: #fff;
}
.contenido-hero p{
	position: absolute;
	text-transform: uppercase;
	line-height: 1.8;
	color: #fff;
	font-size: 20px;
	text-align: justify;
	padding: 20px;
	margin-top: 15%;
	z-index: 1;
}

@media only screen and (min-width:220px) and (max-width: 424px){
	.contenido-hero h3 span{
		font-size: 14px;
	}
	.contenido-hero p{
		font-size: 12px;
		
	}
}

@media only screen and (min-width:425px) and (max-width: 680px){
	.contenido-hero h3 span{
		font-size: 21px;
	}
	.contenido-hero p{
		font-size: 15px;
	}
}


@media only screen and (min-width:681px) and (max-width: 840px){
	.contenido-hero h3 span{
		font-size: 35px;
	}
	.contenido-hero p{
		font-size: 20px;
	}
}

/****************** SECCION SERVICIOS | NACIONAL ************************/
.nacional{
	display: flex;
	align-items: center;
	justify-content: space-around;
}
 .txt{
 	padding-top: 40px;
 	padding-bottom: 30px;
 	font-size: 24px;
	text-align: center;
	text-transform: uppercase;
	color: #0057aa;
}
.container-nacional{
	display:flex;
  flex-wrap: wrap;
  align-items: center;
  width: 60%;
  justify-content: space-around;
  margin-top: 25px;
  margin-bottom: 20px;
}

.container-nacional p{
	line-height: 1.8;
	font-size: 16px;
text-transform: uppercase;
text-align: justify;
}

/****************** SECCION AGENCIAS | NACIONALES ************************/
.container-card{
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.container-col{
	display:flex;
  flex-wrap: wrap;
  align-items: center;
  width: 90%;
  justify-content: space-around;
  margin-top: 25px;
  margin-bottom: 60px;
}
.title-cards{
	width: 100%;
	max-width: 1080px;
	margin: auto;
	padding: 20px;
	margin-top: 20px;
	text-transform: uppercase;
	font-size: 18px;
	text-align: center;
	color: black;
}

.card{
	max-width: 1200px;
    width: 350px;
    height:450px;
    margin-right: 15px;
	margin: 20px;
	border-radius: 12px;
	overflow: hidden;
	background:#fff;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
	transition: all 400ms ease-out;
	cursor: default;
}
.card h3{
	text-transform: uppercase;
	font-size: 16px;
	color: #0057aa;
	padding: 0px 0px 10px;
}
.card:hover{
	box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
	transform: translateY(-3%);
	transition: all 300ms;
}

.card img{
	width: 100%;
	height: 210px;
}

.card .contenido-card{
	padding: 15px;
	text-align: center;
}

.card .contenido-card p{
	text-transform: uppercase;
	line-height: 1.8;
	color: #6a6a6a;
	font-weight: 600;
	font-size: 14px;
	text-align: justify;
	margin-bottom: 5px;
}
.card .contenido-card a{
	text-decoration: none;
	color: #0057aa;
	cursor: pointer;
}
.card .contenido-card a:hover{
	transform: scale(1.1);
	transition: .3s;
}
.card .contenido-card .PBX{
	text-transform: uppercase;
	line-height: 1.8;
	color: #0057AA;
	font-size: 12px;
	margin-bottom: 5px;
}
/****************** SECCION AGENCIAS | RESPONSIVE ************************/
@media only screen and (min-width:320px) and (max-width:768px){
	.container-col{
		margin: auto;
		display: flex;
		
	}
	
}

/******************* BOTON | IR ARRIBA **************************/
.ir-arriba {
  position: fixed;
  bottom: 110px;
  margin-right: 30px;
  width: 40px;
  height: 40px;
  background: #009adc;
  border-radius: 20px;
  border-style: none;
  padding: 5px;
  cursor: pointer;
  transition: all 300ms ease;
  z-index: 1;
}

.ir-arriba img {
  width: 25px;
  height: 20px;

}

.ir-arriba:hover {
  transform: scale(1.2);
}

/****************** SECCION BOTON | WHATSAPP  ************************/
.btn-whatsapp {
    display:block;
    width:70px;
    height:70px;
    color:#fff;
    position: fixed;
    right:20px;
    bottom:20px;
    border-radius:50%;
    line-height:80px;
    text-align:center;
    z-index:999;
}

.btn-whatsapp img:hover{
    transform: scale(1.1);
    transition: .5s;
}
