@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.loader-wrapper{
    width:100%;
    height:100%;
    min-height: 100vh;
    /*top:0;
    left:0;*/
    background-color:#fff;
    display:flex;
    /*align-content:center;*/
    align-items:center;
    justify-content:center;
    z-index:999999;
    position:fixed;
}
@charset "UTF-8";
:root {
  --duration: 1.5s;
  --contrainer-size: 250px;
  --box-size: 33px;
  --box-border-radius: 15%;
}
/*
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}*/

.contrainer {
  width: var(--contrainer-size);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.📦 {
  width: var(--box-size);
  height: var(--box-size);
  position: relative;
  display: block;
  transform-origin: -50% center;
  border-radius: var(--box-border-radius);
}
.📦:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: lightblue;
  border-radius: var(--box-border-radius);
  box-shadow: 0px 0px 10px 0px rgba(28, 159, 255, 0.4);
}
.📦:nth-child(1) {
  -webkit-animation: slide var(--duration) ease-in-out infinite alternate;
          animation: slide var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(1):after {
  -webkit-animation: color-change var(--duration) ease-in-out infinite alternate;
          animation: color-change var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2) {
  -webkit-animation: flip-1 var(--duration) ease-in-out infinite alternate;
          animation: flip-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  -webkit-animation: squidge-1 var(--duration) ease-in-out infinite alternate;
          animation: squidge-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3) {
  -webkit-animation: flip-2 var(--duration) ease-in-out infinite alternate;
          animation: flip-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3):after {
  -webkit-animation: squidge-2 var(--duration) ease-in-out infinite alternate;
          animation: squidge-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4) {
  -webkit-animation: flip-3 var(--duration) ease-in-out infinite alternate;
          animation: flip-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4):after {
  -webkit-animation: squidge-3 var(--duration) ease-in-out infinite alternate;
          animation: squidge-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5) {
  -webkit-animation: flip-4 var(--duration) ease-in-out infinite alternate;
          animation: flip-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5):after {
  -webkit-animation: squidge-4 var(--duration) ease-in-out infinite alternate;
          animation: squidge-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  background-color: #1C9FFF;
}
.📦:nth-child(3):after {
  background-color: #1FB1FD;
}
.📦:nth-child(4):after {
  background-color: #22C7FB;
}
.📦:nth-child(5):after {
  background-color: #23D3FB;
}

@-webkit-keyframes slide {
  0% {
    background-color: #1795FF;
    transform: translatex(0vw);
  }
  100% {
    background-color: #23D3FB;
    transform: translatex(calc(var(--contrainer-size) - (var(--box-size) * 1.25)));
  }
}

@keyframes slide {
  0% {
    background-color: #1795FF;
    transform: translatex(0vw);
  }
  100% {
    background-color: #23D3FB;
    transform: translatex(calc(var(--contrainer-size) - (var(--box-size) * 1.25)));
  }
}
@-webkit-keyframes color-change {
  0% {
    background-color: #1795FF;
  }
  100% {
    background-color: #23D3FB;
  }
}
@keyframes color-change {
  0% {
    background-color: #1795FF;
  }
  100% {
    background-color: #23D3FB;
  }
}
@-webkit-keyframes flip-1 {
  0%, 15% {
    transform: rotate(0);
  }
  35%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-1 {
  0%, 15% {
    transform: rotate(0);
  }
  35%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-1 {
  5% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  15% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  25%, 20% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  55%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  40% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-1 {
  5% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  15% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  25%, 20% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  55%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  40% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-2 {
  0%, 30% {
    transform: rotate(0);
  }
  50%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-2 {
  0%, 30% {
    transform: rotate(0);
  }
  50%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-2 {
  20% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  30% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  40%, 35% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  70%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  55% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-2 {
  20% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  30% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  40%, 35% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  70%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  55% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-3 {
  0%, 45% {
    transform: rotate(0);
  }
  65%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-3 {
  0%, 45% {
    transform: rotate(0);
  }
  65%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-3 {
  35% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  45% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  55%, 50% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  85%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  70% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-3 {
  35% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  45% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  55%, 50% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  85%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  70% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-4 {
  0%, 60% {
    transform: rotate(0);
  }
  80%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-4 {
  0%, 60% {
    transform: rotate(0);
  }
  80%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-4 {
  50% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  60% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  70%, 65% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  85% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-4 {
  50% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  60% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  70%, 65% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  85% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}















html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	/*width: 100vw;
	*/
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100vw;
}


.cont-asociados{
	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: #0c7b93;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid #0c7b93;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	margin-top: 30px;
	transition: .3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: #ffff ;
	background-color: #0c7b93 ;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	/*color: crimson;*/
	color: #0c7b93;
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	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: rgba(240, 248, 255, 0.021);
	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: #0c7b93;
}
#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 */

/* inicio Section */
#inicio {
	/*background-image: url(./img/seguro.jpg);*/
	/*background-clip: url(./videos/video-afocat.mp4);*/
	/*background: url(./videos/video-afocat.mp4);*/
	
	background-size: cover;
	background-position: top center;
	background-color: black;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

#videoBG {
	/*top: 0;
	/*left: 0;
	/*right: 0;
	bottom: 0;
	align-items: center;
	position: absolute;
	z-index: -10;
	max-width: 100%;
	max-height: 100%;*/
	}

	.videoe{
		/*text-align: center;*/
		position: absolute;
		z-index: -10;
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		/*right: 0;*/
		/*left: 0;*/
		/*right: 0;*/
	}

	/*
@media(min-aspect-ratio: 16/9)
{
	#videoBG {
		width: 100%;
		height: auto;
		}
}
*/

@media(max-aspect-ratio: 16/9)
{
	/*#videoBG {
		width: auto;
		height: 100%;
		}*/

		.videoe{
			/*text-align: center;*/
			position: absolute;
			z-index: -10;
			height: 100%;
			width: 100%;
			top: 0;
			left: 0;
			/*right: 0;*/
			/*left: 0;*/
			/*right: 0;*/
		}
}

/*end media query video*/

#inicio::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: .7;
	z-index: -1;
}
#inicio .inicio {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#inicio h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal .5s ease forwards;
	animation-delay: 1s;
}
#inicio h1:nth-child(1) {
	animation-delay: 1s;
}
#inicio h1:nth-child(2) {
	animation-delay: 2s;
}
#inicio h1:nth-child(3) {
	animation: text_reveal_name .5s ease forwards;
	animation-delay: 3s;
}
#inicio h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	/*background-color: crimson;*/
	background-color: #0c7b93;
	animation: text_reveal_box 1s ease;
	animation-delay: .5s;
}
#inicio h1:nth-child(1) span {
	animation-delay: .5s;
}
#inicio h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#inicio h1:nth-child(3) span {
	animation-delay: 2.5s;
}

/*WHATSAPP*/
.float{
	position:fixed;
	box-sizing: border-box;
	width:65px;
	height:65px;
	bottom:22px;
	right:178px;
	block-size:65px;
	
	padding-bottom: 40px;
	
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	align-content: center;
	align-self: center;
	align-items: center;
  font-size:50px;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  z-index:999;
 
  
}
.float:hover {
	
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
  
}

.my-float{
	margin-top:8px;
	font-size: 10px;
	display: block;

	display: block;
}
.my-float:hover{
	width: 100%;
	height: 100%;
	display: block;
}
/*WHATSAPP*/
/*emergencias*/
.conteiner{
	position: fixed;
	bottom: 22px;
	/*right: 40px;*/
	right: -50px;
	z-index: 999;
	
}


#btn-mas{
	display: none;
	/*background-image: url("./img/icono-emerg.png");*/
}
.btn-mas{
	opacity: 0.7;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}
.btn-mas:hover{
	opacity: 1;
}

.btn-mas{
	display: flex;
	
	text-decoration: none;
	background: whitesmoke;
	
	width: 120px;
	height: 100%;
	line-height: 24px;
	text-align: center;
	
	border-radius: 25px;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
	transition: all 500ms ease;
	/*background-image: url("./img/icono-emerg.png");*/
	align-items: center;
	align-content: center;
	padding: 5px 5px 5px 5px;
	cursor: pointer;
	box-sizing: border-box;
	/*background: #f44141;*/

}
.btn-mas label{
	cursor: pointer;
}

.btn-mas img{
	width: 20%;
	height: 20%;
	cursor: pointer;
}
.btn-mas h2{
	font-size: 1.6rem;
}

.redes{
	margin-right: 80px;
}
.redes a{
	display: block;
	text-decoration: none;
	background: #cc2b2b;
	color: white;
	width: 140px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
	transition: all 500ms ease;
	font-size: 17px;
	
	 
	border-radius: 2em;

	margin-bottom: -15px;
	opacity: 0;
	visibility: hidden;
}
.redes a:hover{
	background: #f44141;
}
#btn-mas:checked~ .redes a{
	margin-bottom: 10px;
	opacity: 1;
	visibility: visible;
}
.asddsa{
	margin-bottom: 10px;
	opacity: 1;
	visibility: visible;
}
#btn-mas:checked~ .btn-mas{
	/*transform: rotate(137deg);*/
	animation-name: shake;
	animation-duration: 0.7s;

}

/*-------------------MAPA INICIO----------------------*/

.mapa{
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 50px;
	box-sizing: border-box;
	max-width: 100%;
}

.mapa div{
	width: 100%;
	max-width: 100%;
}

.mapa iframe{
	padding: 10px;
	width: 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*-------------------MAPA FIN----------------------*/

@keyframes shake{
	0%   {transform: rotate(40deg);}
	25%  {transform: rotate(-40deg);}
	50%  {transform: rotate(40deg);}
	75%  {transform: rotate(-40deg);}
	100% {transform: rotate(0deg);}
}

/*
.icon-emer{
	
	/*width: 20%;
	z-index: 122;
	transform: translateY(00px);
	z-index: 102;
	/*align-self: center;
	position: relative;
	width: 40px;
	height: 40px;
/*	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(20%);
}
#text-emer{
	
	color: black;
	font-size: 4rem;
/*	bottom: 0;
	align-self: center;
	display: inline-block;
  	vertical-align: top;
	
}*/
/* End inicio Section */

/* productos Section */
#productos .productos {
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0;
}
#productos .producto-top {
	max-width: 500px;
	margin: 0 auto;
}
#productos .producto-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
#productos .producto-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	/*background-image: url(./img/img-1.png);*/
	background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 19%, rgba(4,136,163,1) 98%);
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#productos .producto-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #142850 0%, #485563 100%);
	opacity: .9;
	z-index: -1;
}
#productos .producto-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}
#productos .producto-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
}
#productos .producto-item p {
	color: white;
	text-align: left;
}
/* End productos Section */

/* galerias section */
#galerias .galerias {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}
#galerias .galerias-header h1 {
	margin-bottom: 50px;
}
#galerias .all-galerias {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#galerias .galeria-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#galerias .galeria-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #142850 0%, #485563 100%);
	color: white;
}
#galerias .galeria-info h1 {
	font-size: 4rem;
	font-weight: 500;
}
#galerias .galeria-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 10px;
}
#galerias .galeria-info p {
	color: white;
}
#galerias .galeria-img {
	flex-basis: 50%;
	height: 300px;
	width: 100%;
	overflow: hidden;
	position: relative;
}
#galerias .galeria-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #142850 0%, #485563 100%);
	opacity: .7;
}
#galerias .galeria-img img {
	transition: .3s ease transform;
}
#galerias .galeria-item:hover .galeria-img img {
	transform: scale(1.1);
}
/* End galerias section */

/* nosotros Section */
#nosotros .nosotros {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
	background-color: transparent;
}
#nosotros .col-left {
	width: 250px;
	height: 360px;
}
#nosotros .col-right {
	width: 100%;
}
#nosotros .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: .2rem;
	margin-bottom: 10px;
}
#nosotros .col-right p {
	margin-bottom: 20px;
}
#nosotros .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}
#nosotros .col-left .nosotros-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#nosotros .col-left .nosotros-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid crimson;
	z-index: -1;
}
/* End nosotros Section */



/* contactos Section */
#contactos .contactos {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	max-width: 100vw;
}
#contactos .contactos-items {
	width: 400px;
}
#contactos .contactos-item {
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	margin-right: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: .3s ease box-shadow;
}
#contactos .contactos-item-sede {
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	margin-right: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	align-content: center;
	font-size: 25px;
	color: #0c7b93;
}
#contactos .contactos-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
#contactos .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}
#contactos .contactos-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}
#contactos .contactos-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
	
}
/*End contactos 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;
	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 */

.co-nuestros-servicios h1{
	text-align: center;
	font-size: 60px;
}

.contenedorsearchin{
	/*display: flex;*/
	/*height: 100vh;*/
	margin: 0;
	padding: 0;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	
  }

.search-box{
	font-family: "Candara", sans-serif;
	position: relative;
	background: #333A45;
	height: 40px;
	padding: 10px;
	border-radius: 40px;
	box-shadow: 0 0 25px 0 rgba(51, 58, 69, 0.4);
  }
  
  .search-box input{
	border: none;
	background: none;
	outline: none;
	float: left;
	padding: 0;
	color: #fff;
	font-size: 30px;
	line-height:5px;
	width: 0px;
	height: auto;
	transition: all 0.8s;
  }
  
  .search-box:hover input{
	width: 280px;
	padding: 0 6px;
  }
  
  .search-box input:focus{
	width: 280px;
	padding: 0 6px;
  }
  
  .search-btn{
	border: none;
	background: none;
	outline: none;
	width: 40px;
	margin-top: -28px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
  }
  
  .search-btn i{
	z-index: 99;
	background: #00B894;
	font-size: 30px;
	color: #333A45;
	padding: 25px;
	border-radius: 50px;
	box-shadow: 0 0 25px 0 rgba(0, 184, 148, 0.4);
  }
 
  #main-contenedortabla{
	 
	  margin: auto 0;
	  width: 100%;
/*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);
	}
	#tm:checked~ #lista{
		background-color: 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%);*/
		
	}

/* 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 */
/*gaa*/
/*hasta 280px*/
@media only screen and (max-width: 280px){
	

	#galerias .galeria-info {
		padding: 10px;
	}

	#galerias .galeria-info p{
		font-size: 1.3rem;
	}

	#galerias .galeria-info h1{
		font-size: 2rem;
	}

	#galerias .galeria-info h2{
		font-size: 1.7rem;
	}

	#nosotros .col-left .nosotros-img::after {
		content: '';
		position: absolute;
		left: -23px;
		top: 19px;
		height: 98%;
		width: 98%;
		border: 7px solid crimson;
		z-index: -1;
	}

	#footer p{
		text-align: center;
		
	}

	#footer h2{
		text-align: center;
	}
}
/* 281 - 768*/
@media only screen and (min-width: 281px) {

	#footer p{
		text-align: center;
		
	}

	#footer h2{
		text-align: center;
	}

}
/* Media Query For Tablet */

/*desde 769*/
@media only screen and (min-width: 769px) {
	.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;
	}
	
	/* inicio */
	#inicio h1 {
		font-size: 7rem;
	}
	/* End inicio */

	/* productos Section */
	#productos .producto-bottom .producto-item {
		flex-basis: 45%;
		margin: 2.5%;
	}
	/* End productos Section */

	/* galeria */
	#galerias .galeria-item {
		flex-direction: row;
	}
	#galerias .galeria-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#galerias .galeria-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#galerias .all-galerias .galeria-info {
		height: 100%;
	}
	#galerias .all-galerias .galeria-img {
		height: 100%;
	}
	/* End galeria */
	

	/* nosotros */
	#nosotros .nosotros {
		flex-direction: row;
	}
	#nosotros .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#nosotros .nosotros .col-left .nosotros-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid #0c7b93;
	}
	#nosotros .col-right {
		text-align: left;
		padding: 30px;
	}
	#nosotros .col-right h1 {
		text-align: left;
	}
	/* End nosotros */


	/* contactos  */

	#contactos .contactos {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vw;
		
	}
	#contactos .contactos-items {
		
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		margin: 0;
		max-width: 100vw;
	}
	#contactos .contactos-item {
		width: 22%;
		margin: 0;
		flex-direction: row;
		margin: 0 20px;
		margin-bottom: 30px;
	}
	#contactos .contactos-item .icon {
		height: 100px;
		width: 100px;
	}
	#contactos .contactos-item .icon img {
		object-fit: contain;
	}
	
	#contactos .contactos-item .contactos-info {
		width: 70%;
		text-align: left;
		padding-left: 20px;
		word-wrap: break-word;
	}
	
	#contactos .contactos-item-sede {
		width: 12%;
	
		font-size: 1.8em;
	
	}
	/* End contactos  */
	#lista .co-menu{
		opacity: 1;
	/*visibility: hidden;*/
	transform: translateX(0%);
	display: block;
	
	}

	#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%);*/
		
	}


	.mapabox{
		min-height: 20vh;
		/*width: 100vw;
		*/
		display: flex;
		align-items: center;
		justify-content: center;
		max-width: 100vw;
		font-size: 20px;
	}



	
}

@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;
	}		


/*-------------------MAPA INICIO----------------------*/
.mapabox{
	min-height: 15vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
/*-------------------MAPA FIN----------------------*/



}
/* End Media Query For Tablet */
	


/* 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 */
	#productos .producto-bottom .producto-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
	
	
}

/* End  Media Query For Desktop */


